import { FASTElement } from "@microsoft/fast-element"; /** * MultiView * @summary A customizable step component for a wizard-style interface. * * @example * ```html * *
Start Content
*
Default Content
*
End Content
*
* ``` * * @attr {boolean} hidden - Controls the visibility of the component. True if the component is hidden. * * @prop {boolean} hidden - Determines the hidden state of the multi-view. * * @slot - Default slot for adding content that can be shown or hidden. * * @csspart multi-view - Style part for the main container of the multi-view. * * @method hiddenChanged(oldValue: string, newValue: string) - Called when the `hidden` attribute changes. It emits the `hidden-change` event. * * @fires hidden-change - Fires when the hidden state of the component changes. * * @extends FASTElement * @tagname fabric-multi-view * @public */ export declare class MultiView extends FASTElement { /** * Determines the hidden state of the multi-view * @public * @type {boolean} * @attr */ hidden: boolean; hiddenChanged(oldValue: string, newValue: string): void; } //# sourceMappingURL=multi-view.d.ts.map