import * as React from 'react'; export declare const PieChartSize: { sm: string; md: string; lg: string; }; export declare const PieChartVariant: { default: string; forVsAgainst: string; for: string; against: string; }; export type PieChartSizeType = (typeof PieChartSize)[keyof typeof PieChartSize]; export type PieChartVariantType = (typeof PieChartVariant)[keyof typeof PieChartVariant]; export interface PieChartProps extends React.HTMLAttributes { variant?: PieChartVariantType; size?: PieChartSizeType; percentage: number; } declare const PieChart: ({ variant, size, percentage, ...props }: PieChartProps) => import("react/jsx-runtime").JSX.Element; export { PieChart };