import Field from './field';
export declare type BuilderGeneratorFunction<T> = (increment: number) => Field<keyof T>;
export declare type BuilderReturnFunction<T> = (increment: number) => Field<T>;
export declare type DateBuilderOptions = {
    incrementDay: boolean;
};
export declare type LoremIpsumOptions = {
    minLength: number;
    maxLength: number;
};
