import type { Meta, StoryFn } from '@storybook/react'; import type { TableProps } from '@pega/cosmos-react-core'; declare const _default: Meta; export default _default; interface TableStoryProps { title?: TableProps['title']; hoverHighlight?: TableProps['hoverHighlight']; loading?: TableProps['loading']; loadingMessage?: TableProps['loadingMessage']; emptyTable?: boolean; } export declare const TableDemo: StoryFn; export declare const StyledTableDemo: StoryFn; interface ConfigurableTableProps extends TableStoryProps { headerFontSize?: string; headerFontWeight?: string; headerForegroundColor?: string; headerBackgroundColor?: string; headerVerticalSpacing?: number; headerHorizontalSpacing?: number; headerBorderWidth?: string; headerBorderColor?: string; bodyForegroundColor?: string; bodyBackgroundColor?: string; bodyVerticalSpacing?: number; bodyHorizontalSpacing?: number; bodyBorderWidth?: string; bodyBorderColor?: string; borderHorizontalInner?: boolean; borderHorizontalOuter?: boolean; borderVerticalInner?: boolean; borderVerticalOuter?: boolean; spacingHorizontalInner?: boolean; spacingHorizontalOuter?: boolean; spacingVerticalInner?: boolean; spacingVerticalOuter?: boolean; } export declare const ConfigurableTable: StoryFn; //# sourceMappingURL=Table.stories.d.ts.map