import * as React from 'react';
import { JobSearchParams } from '@lml/cosmo-redux-api';
import { StylableComponentProps } from 'cosmoui';
export declare type FetchJobsByStatus = (searchKey: string, params: JobSearchParams, showData?: string, args?: any) => any;
export interface JobsSearchFormProps extends StylableComponentProps {
}
export interface JobsSearchFormComponentProps extends JobsSearchFormProps {
    frequencies: string[];
    resetForm: (formName: string) => any;
    notificationWarning: (message: string) => void;
    fetchJobsByStatus: FetchJobsByStatus;
}
export declare const JobsSearchForm: React.ComponentClass<JobsSearchFormProps>;
