import type { DefineComponent } from "vue"; /** DropdownButton component props */ export interface DropdownButtonProps { size?: string; shape?: string; disabled?: boolean; icon?: string | any[] | Record; theme?: string; dark?: boolean; arrow?: boolean; /** default: bottom-right */ placement?: string; } /** DropdownButton Vue 3 component */ declare const DropdownButton: DefineComponent; export default DropdownButton;