import React from 'react'; import type { LinearProgressProps } from './types'; /** * LinearProgress — MD3 linear progress indicator. * * Three-layer architecture: track → buffer → fill (absolute positioned). * * Supports four variants: * - `indeterminate`: two staggered bars animate across the track (2100 ms loop + 715 ms delay). * - `determinate`: primary bar fills proportionally to `value`. * - `buffer`: primary + secondary (buffer) bars visible. * - `query`: reversed indeterminate animation. */ declare const LinearProgress: React.NamedExoticComponent; export { LinearProgress }; //# sourceMappingURL=LinearProgress.d.ts.map