import { Vue } from 'vue-property-decorator';
export default class  extends Vue {
    is_open: boolean;
    down_icon: any;
    title: string | undefined;
    items: ({
        left_icon?: string;
        right_icon?: string;
        label: string | null;
        value?: any;
    } | null)[];
    scroll: string | undefined;
    mounted(): void;
    clickButton(): void;
    clickItem({value_}: {
        value_: any;
    }): void;
    getIcon({name_}: {
        name_: string;
    }): any;
    readonly dropdown_length: string | null;
}
