import * as i0 from "@angular/core"; import * as i1 from "@danske/sapphire-angular"; /** * An implementation of the CVI Progress Bar. */ export declare class DanskeProgressBarComponent { /** * Height of the progress bar in pixels. * The width is derived automatically to preserve the golden-ratio aspect. * Takes precedence over `width` if both are set. */ height?: number; /** * Width of the progress bar in pixels. * The height is derived automatically to preserve the golden-ratio aspect. * Ignored if `height` is also set. */ width?: number; /** * Disables the outline that surrounds the box by default. */ noOutline?: boolean; /** Passes height directly to CSS; all geometry is calc()-derived in the stylesheet. */ private get cssHeightVar(); /** Passes width directly to CSS; used to derive height when height is not set. */ private get cssWidthVar(); /** Adds the no-outline modifier class when outline is suppressed. */ private get noOutlineClass(); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }