import { GenesisTheme } from '../../styles/theme/genesis-theme.types'; interface StyledErrorBoundaryProperties { theme?: GenesisTheme; type?: "primary" | "secondary"; state?: "active" | "disabled"; } export declare const getGenesisClass: ({ colors, borderRadius, sizing }: { colors: any; borderRadius: any; sizing: any; }, type?: string, state?: string) => string; export declare const StyledErrorBoundary: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute, HTMLDivElement>, StyledErrorBoundaryProperties>> & string; export {};