import { GenesisTheme } from '../../styles/theme/genesis-theme.types'; interface StyledColumnProperties { theme?: GenesisTheme; $hasBorder?: boolean; $isFullWidth?: boolean; actions?: unknown; } export declare const getGenesisColumnClass: ({ colors, borderRadius, sizing }: { colors: any; borderRadius: any; sizing: any; }, $hasBorder?: boolean, $isFullWidth?: boolean, actions?: any) => string; export declare const Column: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute, HTMLDivElement>, StyledColumnProperties>> & string; export {};