import { FASTElement } from '@microsoft/fast-element'; export declare class SidecarShell extends FASTElement { /** * The open attribute. Opens the sidecar from the right side of the viewport. */ open: boolean; /** * openChanged * * Emits events for open and dismiss on changes */ openChanged(): void; /** * The detach attribute. Detaches the sidecar from the page. Behavior and styling currently undefined. */ detach: boolean; /** * internal */ header: HTMLElement[]; /** * internal */ content: HTMLElement[]; /** * internal */ footer: HTMLElement[]; /** * internal */ footerOptional: HTMLElement[]; /** * toggleSidecar * a public method to open and close the sidecar */ toggleSidecar(): void; /** * dismissSidecar * a public method to close the sidecar */ dismisSidecar(): void; /** * openSidecar * a public method to open the sidecar */ openSidecar(): void; /** * detachSidecar * a public method to detach the sidecar from the side of the screen. Behavior for detached mode is currently undefined. */ detachSidecar(): void; /** * attachSidecar * a public method to re-attach the sidecar to the side of the screen. Behavior for detached mode is currently undefined. */ attachSidecar(): void; connectedCallback(): void; } //# sourceMappingURL=sidecar-shell.d.ts.map