interface Option {
    label: string;
    value: string;
}
interface ReturnValue {
    getRef: () => HTMLSelectElement;
    clickOption: (value: string) => Event;
}
export declare const syntheticSelect: <T>(options: Option[] | T[], selectedText?: string, name?: string) => ReturnValue;
export {};
