import { AbstractJobField, AbstractJobFieldProps } from './abstract-field';
export declare class CollectByField extends AbstractJobField<AbstractJobFieldProps> {
    render(): JSX.Element;
}
export declare class DeliverByField extends AbstractJobField<AbstractJobFieldProps> {
    render(): JSX.Element;
}
/**
 * NOTE: there is no completedAt field
 * to get the completed at time you must got to the JobStatusModel
 * and check that the status is completed. If so then then the completed time
 * will be availble form the timestamp field
 */
export declare class CompletedAtField extends AbstractJobField<AbstractJobFieldProps> {
    render(): JSX.Element;
}
