import { SetupContext } from 'vue';
import { SelectInputCommonProperties } from './interface';
import { TdSelectInputProps } from './type';
export default function useSingle(props: TdSelectInputProps, context: SetupContext): {
    inputRef: import("vue").Ref<any>;
    commonInputProps: import("vue").ComputedRef<SelectInputCommonProperties>;
    onInnerClear: (context: {
        e: MouseEvent;
    }) => void;
    renderSelectSingle: (popupVisible: boolean) => JSX.Element;
};
