import { default as React } from 'react'; export interface ProgressBarProps { /** * Int from 0 to 100 */ percentComplete: number; /** * CSS Value; Total width of progress bar. * (e.g. "50%" or "200px") */ totalWidth?: string; /** * Size (height) of the ProgressBar */ size?: "s" | "m"; /** * Flattens left and right sides of ProgressBar * when you want to create a full-bleed effect */ fullBleed?: boolean; } declare const ProgressBar: ({ totalWidth, percentComplete, size, fullBleed, }: ProgressBarProps) => React.JSX.Element; export default ProgressBar; //# sourceMappingURL=index.d.ts.map