import React from 'react'; import type { SharedProps } from '@coinbase/cds-common'; export type TableSectionTag = 'thead' | 'tbody' | 'tfoot' | 'div'; export type TableSectionProps = SharedProps & { children?: React.ReactNode; /** * Internal only * @default undefined */ as?: TableSectionTag; className?: string; }; export declare const TableSection: React.MemoExoticComponent< ({ as, children, testID, className, ...props }: TableSectionProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=TableSection.d.ts.map