import { type PropType, type StyleValue } from 'vue'; export interface CollapseProps { rootStyle?: StyleValue; rootClass?: string; contentClass?: string; contentStyle?: string; visible?: boolean; } export declare const collapseProps: { rootStyle: PropType; rootClass: StringConstructor; contentClass: StringConstructor; contentStyle: StringConstructor; visible: BooleanConstructor; }; export interface CollapseSlots { default(props: Record): any; }