import { ColorProps, FontWeightProps, ResponsiveFontWeightProps, ResponsiveGapYProps, ResponsiveSideProps, SpaceProps } from '../../utils/types/types'; type Sizes = "xs" | "sm" | "md" | "lg"; interface EmptyStateProps { title?: string; titlSize?: { xs: Sizes; sm?: Sizes; md?: Sizes; lg?: Sizes; } | Sizes; subtitlSize?: { xs: Sizes; sm?: Sizes; md?: Sizes; lg?: Sizes; } | Sizes; titleWeight?: ResponsiveFontWeightProps | FontWeightProps; subtitleWeight?: ResponsiveFontWeightProps | FontWeightProps; subtitle?: string; className?: string; gapY?: ResponsiveGapYProps | SpaceProps; titleColor?: ColorProps; subtitleColor?: ColorProps; padding?: ResponsiveSideProps; } declare const EmptyState: ({ title, subtitle, className, gapY, titleColor, subtitleColor, titlSize, subtitlSize, titleWeight, subtitleWeight, padding }: EmptyStateProps) => import("react/jsx-runtime").JSX.Element; export default EmptyState;