import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; declare const _default: __VLS_WithTemplateSlots>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { navigate: () => void; }, string, PublicProps, Readonly>> & Readonly<{ onNavigate?: (() => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, Readonly & FilterDrawerItemSlots>; export default _default; export declare interface FilterDrawerItemEmits { (e: 'navigate'): any; } export declare interface FilterDrawerItemProps { /** The name of a filter group */ group: string; title: string; description?: string; } export declare interface FilterDrawerItemSlots { default?: () => unknown; } export { }