import React from 'react';
export type TimezoneSelectorProps = {
    selected?: string;
    options?: {
        name: string;
    }[];
    onSelect: (string: any) => void;
    theme?: any;
};
declare function TimezoneSelectorFactory(): React.FC<Omit<TimezoneSelectorProps, "theme">>;
export default TimezoneSelectorFactory;
