/// <reference types="react" />
import { TimezoneSelectProps as BPTimezoneSelectProps } from '@blueprintjs/datetime2';
import { FieldBaseProps } from '@blueprintjs-formik/core';
export interface TimezoneSelectProps extends Omit<FieldBaseProps, 'children' | 'component' | 'as'>, Omit<BPTimezoneSelectProps, 'value' | 'name' | 'onChange'> {
    name: string;
}
/**
 * Timezone select Blueprint component binded with Formik.
 * @param {TimezoneSelectProps} props - Timezone select props
 * @returns {JSX.Element}
 */
export declare function TimezoneSelect({ ...props }: TimezoneSelectProps): JSX.Element;
