import { ExtractPropTypes } from 'vue';
export declare const selectIconProps: {
    readonly modelValue: {
        readonly type: StringConstructor;
        readonly default: "";
    };
};
export type SelectIconProps = ExtractPropTypes<typeof selectIconProps>;
export declare const selectIconEmits: {
    'update:modelValue': (value: string | null | undefined) => string | null | undefined;
};
export type SelectIconEmits = typeof selectIconEmits;
