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 interface DataViewToolbarProps { /** * An array of sort options to display in the dropdown. */ sortOptions?: SortOption[]; } declare const _default: DefineComponent, { sortOptions: () => never[]; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly, { sortOptions: () => never[]; }>>> & Readonly<{}>, { sortOptions: SortOption[]; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export default _default; declare interface SortOption { id: string; labelAsc?: string; labelDesc?: string; } export { }