import { ChartDonutProps } from '@patternfly/react-charts/victory';
export declare function PageDonutChart(props: Omit<ChartDonutProps, 'width' | 'height'> & {
    total: number;
}): import("react/jsx-runtime").JSX.Element;
export declare function PageDashboardDonutCard(props: {
    title: string;
    linkText?: string;
    to: string;
    items: {
        count: number;
        label: string;
        color: string;
    }[];
    loading?: boolean;
}): import("react/jsx-runtime").JSX.Element;
