///
export type Props = {
spacing?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
gridlines?: boolean;
scroll?: boolean;
scrollbar?: {
height?: number;
color?: string;
background?: string;
hover?: string;
};
alternate?: boolean;
gridColor?: string;
activeColor?: string;
textColor?: string;
even?: string;
odd?: string;
};
export declare const BaseTable: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLTableElement>, Props>>;