import * as React from "react";

//#region src/row.d.ts
type RowProps = Readonly<React.ComponentPropsWithoutRef<'table'> & {
  children: React.ReactNode;
}>;
declare const Row: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & {
  children: React.ReactNode;
}> & React.RefAttributes<HTMLTableElement>>;
//#endregion
export { Row, RowProps };
//# sourceMappingURL=index.d.ts.map