import { MmUIComponent } from './component' /** Progress component */ export declare class MmProgress extends MmUIComponent { /** Progress bar type */ type: 'line' | 'circle' /** Percentage (required) */ percentage: number /** Current status of progress bar */ status: string /** Width of the progress bar, unit px */ strokeWidth: number /** Progress bar display text is built into the progress bar (only available when type=line) */ textInside: boolean /** Circular progress bar canvas width (only available when type=circle) */ width: number /** Whether the progress bar text content is displayed */ showText: boolean /** Progress bar background color (will cover status status color) */ color: string /** Circular progress bar notch (available when type=circle) */ gapPosition: 'top' | 'bottom' | 'left' | 'right' /** Function templates for content */ format(): void }