/** Shimmer KPI card strip matching `InvoicingKpiCardGrid` dimensions. */ export declare function InvoicingKpiSkeletonGrid({ count, }: Readonly<{ count?: number; }>): import("react/jsx-runtime").JSX.Element; /** Shimmer card with a title bar and a chart-sized block. */ export declare function InvoicingChartCardSkeleton({ height, }: Readonly<{ height?: number; }>): import("react/jsx-runtime").JSX.Element; /** Shimmer card with a title bar and label/value line rows. */ export declare function InvoicingLinesCardSkeleton({ lines, }: Readonly<{ lines?: number; }>): import("react/jsx-runtime").JSX.Element; /** * Full-page shimmer for the Overview dashboard: KPI strip, revenue chart + * movement panel, two half-width cards, and a table block. */ export declare function InvoicingDashboardSkeleton(): import("react/jsx-runtime").JSX.Element; /** * Full-page shimmer for detail pages: title block, summary fact grid, and two * section cards, mirroring `InvoicingDetailScaffold`'s layout. */ export declare function InvoicingDetailSkeleton(): import("react/jsx-runtime").JSX.Element; /** Hub page shimmer: section cards + integrations grid. */ export declare function InvoicingSettingsHubSkeleton(): import("react/jsx-runtime").JSX.Element; /** Branding section shimmer. */ export declare function InvoicingSettingsBrandingSkeleton(): import("react/jsx-runtime").JSX.Element; /** Dunning section shimmer. */ export declare function InvoicingSettingsDunningSkeleton(): import("react/jsx-runtime").JSX.Element; export type InvoicingSettingsSkeletonTab = "payment-destination" | "general" | "integrations" | "dunning"; /** Shimmer placeholder while invoicing settings are fetched from the API. */ export declare function InvoicingSettingsSkeleton({ tab, }: Readonly<{ tab: InvoicingSettingsSkeletonTab | string; }>): import("react/jsx-runtime").JSX.Element; /** Shimmer placeholder while create-invoice settings are fetched from the API. */ export declare function InvoicingCreateInvoiceSkeleton(): import("react/jsx-runtime").JSX.Element; /** * Stands in for the catalog item form's sections while the accounting pickers * load — their options and their registered value shape both depend on the * shared account and class lists. Renders inside the form shell's own centered * column, so the page keeps its title, back arrow and footer. */ export declare function InvoicingCatalogItemFormSkeleton(): import("react/jsx-runtime").JSX.Element;