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_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; export declare type ChevronToggleDirection = `${ChevronToggleDirections}`; declare enum ChevronToggleDirections { Up = "up", Down = "down", Left = "left", Right = "right" } export declare interface ChevronToggleProps { direction?: ChevronToggleDirection; } declare const _default: DefineComponent, { direction: string; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { click: () => void; }, string, PublicProps, Readonly, { direction: string; }>>> & Readonly<{ onClick?: (() => any) | undefined; }>, { direction: "left" | "right" | "up" | "down"; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export default _default; export { }