import { type VNode } from 'vue'; export interface FmCollapsibleTabProps { modelValue?: string; label?: string; icon?: string; disabled?: boolean; badge?: number | (() => VNode); value?: string | number; children?: FmCollapsibleTabProps[]; indentation?: number; /** active state controls the highlight of tab item */ active?: boolean; /** expand state controls the default collapsible state of tab item */ expand?: boolean; /** defines if button can be navigated by pressing tabs */ focusable?: boolean; action?: () => void; } declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { modelValue: undefined; label: string; vertical: boolean; icon: string; disabled: boolean; value: undefined; children: () => never[]; indentation: number; active: boolean; expand: boolean; focusable: undefined; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly, { modelValue: undefined; label: string; vertical: boolean; icon: string; disabled: boolean; value: undefined; children: () => never[]; indentation: number; active: boolean; expand: boolean; focusable: undefined; }>>>, { label: string; disabled: boolean; value: string | number; modelValue: string; children: FmCollapsibleTabProps[]; icon: string; active: boolean; indentation: number; expand: boolean; focusable: boolean; }, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};