export type PageDashboardCountBarProps = {
    counts: {
        title: string;
        total?: number;
        to: string;
        counts?: {
            label: string;
            count: number;
            color: string;
            link?: string;
        }[];
    }[];
};
export declare function PageDashboardCountBar(props: PageDashboardCountBarProps): import("react/jsx-runtime").JSX.Element;
