import type { ExtractPropTypes, SlotsType } from 'vue'; export declare const panelProps: { maxHeight: { type: (NumberConstructor | StringConstructor)[]; }; header: { type: (NumberConstructor | StringConstructor)[]; }; }; export type PanelProps = ExtractPropTypes; export interface PanelSlots { default?: {}; header?: {}; } export declare const panelSlots: SlotsType;