import type { ConstantGenerator } from "../types"; /** * Generates and return a list of constants. * This function calls the generator function a _quantity_ number of times. * @param generator Function generator responsible for creating constants. * @param quantity The number of constants to be generated. * @returns List containing _quantity_ number of constants. */ export declare const constantEntry: (generator: ConstantGenerator, quantity: number) => T[];