import { ConstantGenerator, FakerGenerator } from "../types"; /** * Type guard to detect whether the generator is a Faker function or not. * @param generator List of static objects or function generator. * @returns true if generator is a function. */ export declare const isFakerGenerator: (generator: ConstantGenerator) => generator is FakerGenerator; /** * Process the provided generator according to its type returning a list of constants. * @param generator List of static objects or Function generator. * @returns List of constants. */ export declare const getConstantGeneratorResult: (generator: ConstantGenerator) => T[];