import { FlatTableProps } from "./flat-table.component"; import { DrawerSidebarContextProps } from "../drawer/__internal__/drawer-sidebar.context"; declare const StyledTableContainer: import("styled-components").StyledComponent<"div", any, Pick, never>; declare const StyledFlatTable: import("styled-components").StyledComponent<"table", any, Pick & { size: NonNullable; }, never>; interface StyledFlatTableWrapperProps extends Pick, Partial { hasHorizontalScrollbar: boolean; hasVerticalScrollbar: boolean; lastColRowSpanIndex: number; firstColRowSpanIndex: number; bottomBorderRadius: NonNullable; } declare const StyledFlatTableWrapper: import("styled-components").StyledComponent<"div", any, { theme: object; } & Omit & { cssProps?: { color?: string; opacity?: string; height?: string; width?: string; }; $borderRadius?: import("../box").BoxProps["borderRadius"]; } & StyledFlatTableWrapperProps, "theme">; declare const StyledFlatTableFooter: import("styled-components").StyledComponent<"div", any, { theme: object; } & Pick, "theme">; export { StyledFlatTableWrapper, StyledFlatTable, StyledFlatTableFooter, StyledTableContainer, };