import React from 'react';
import { HTMLInputProps, IFormGroupProps, IInputGroupProps } from '@blueprintjs/core';
import { FormikContextProps } from './utils';
export interface DurationInputProps extends Omit {
onChange?(str: string): void;
name: string;
label?: React.ReactNode;
inputProps?: Omit;
}
export declare function DurationInput(props: DurationInputProps & FormikContextProps): React.ReactElement;