import type { ObjectSource, ObjectGenerator } from "../types"; /** * Type guard to detect whether the source is a Faker function or not. * @param source Object or function generator * @returns true if source is a function. */ export declare const isSourceGenerator: (source: ObjectSource) => source is ObjectGenerator; /** * Process the provided source according to its type returning a resultant object. * @param source Object or function generator * @returns Source object. */ export declare const getDefinedSource: (source?: ObjectSource) => ObjectSource;