import type { HTMLAttributes } from 'vue';
export type DropdownProps = {
/**
* If true, the dropdown will not have the borders
*/
inline?: boolean;
/**
* The dropdown ID
*/
id?: string;
/**
* Defines a title for the dropdown
*/
title?: string;
} & /* @vue-ignore */ HTMLAttributes;
declare var __VLS_1: {};
type __VLS_Slots = {} & {
default?: (props: typeof __VLS_1) => any;
};
declare const __VLS_base: import("vue").DefineComponent any;
keydown: (event: KeyboardEvent) => any;
}, string, import("vue").PublicProps, Readonly & Readonly<{
onClose?: (() => any) | undefined;
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
}>, {
title: string;
id: string;
inline: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const __VLS_export: __VLS_WithSlots;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots = T & {
new (): {
$slots: S;
};
};