import { type TypographyProps } from "@carrot-kpi/ui"; import React from "react"; interface EmptyProps { title: string; description?: string; vertical?: boolean; titleVariant?: TypographyProps["variant"]; descriptionVariant?: TypographyProps["variant"]; className?: { root?: string; icon?: string; }; } export declare const Empty: ({ title, description, vertical, titleVariant, descriptionVariant, className, }: EmptyProps) => React.JSX.Element; export {}; //# sourceMappingURL=empty.d.ts.map