import React from 'react'; import { CSS } from '../theme/stitches.config'; import { TableRowGroupVariants } from './table.styles'; interface Props { as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type TableRowGroupProps = Props & TableRowGroupVariants & NativeAttrs & { css?: CSS; }; declare const _default: React.ComponentType & Omit, "as">>; export default _default;