import { type CSSProperties } from 'react'; export type SLinearProgressType = 'primary' | 'error' | 'complete'; export interface SLinearProgressProps { /** 진행률 (0–100) */ value?: number; /** 색상 타입 */ type?: SLinearProgressType; /** 진행률 없이 무한 애니메이션 */ indeterminate?: boolean; /** 하단 레이블 */ label?: string; className?: string; style?: CSSProperties; } /** SLinearProgress — sd-linear-progress 포팅. */ export declare const SLinearProgress: import("react").ForwardRefExoticComponent>;