import { ReactElement } from 'react'; export type PercentageVariationShape = 'text' | 'filled'; export type PercentageVariationSize = 'small' | 'medium' | 'big'; export interface PercentageVariationProps { children?: number; variation?: number; shape?: PercentageVariationShape; size?: PercentageVariationSize; } export declare function PercentageVariation({ children, variation, shape, size, }: PercentageVariationProps): ReactElement;