import React from 'react';
import { HeaderKeyType } from './meta';
import './cron-builder.css';
export interface CronProp {
    value?: string;
    onChange(val: string, text: string): void;
    showResultText: boolean;
    showResultCron: boolean;
    translateFn?(key: string): string;
    locale?: string;
    options?: {
        headers: HeaderKeyType[];
    };
    disabled?: boolean;
}
declare const Cron: React.FunctionComponent<CronProp>;
export default Cron;
