import { type ComponentPropsWithRef, type FC, type PropsWithChildren } from 'react'; import type { Gap } from '../../types'; type Padding = Gap | { vertical?: Gap; horizontal?: Gap; }; type AbstractProps = PropsWithChildren<{ /** 境界とコンテンツの間の余白 */ padding?: Padding; }>; type Props = AbstractProps & Omit, keyof AbstractProps>; export declare const EmptyTableBody: FC; export {};