export type LoaderLinearProps = { /** * Value in range of 0-100. If omitted, the loader becomes indeterminate */ value?: number; type?: 'primary' | 'fancy'; size?: 'medium' | 'small'; className?: string; testId?: string; }; export declare const LoaderLinear: ({ value, testId, className, size, type, }: LoaderLinearProps) => JSX.Element; //# sourceMappingURL=LoaderLinear.d.ts.map