import { NativeElement } from '@nonoun/native-core'; export declare class NPane extends NativeElement { #private; static observedAttributes: string[]; get minimized(): boolean; set minimized(val: boolean); get minSize(): number; get maxSize(): number; setup(): void; teardown(): void; attributeChangedCallback(name: string, _old: string | null, val: string | null): void; /** Close the pane. Dispatches cancelable `native:pane-close`. */ close(): void; /** Minimize the pane to header-only. */ minimize(): void; /** Restore from minimized state. */ restore(): void; } //# sourceMappingURL=pane-element.d.ts.map