export declare type DropdownProps = {
    modelValue: boolean;
    btnProps: any;
    label: string;
    right: boolean;
    items?: DropdownItemProps[];
};
export declare type DropdownItemProps = {
    text: string;
    to?: string;
    href?: string;
    icon?: string;
    newTab?: boolean;
};
