type num = number;
type bool = boolean;
type str = string;
export interface Generate {
    randomNumber: (length: num, WithZero: bool, CustomNumbers: num[] | undefined) => num;
    randomWord: (length: num, isCAPITAL: bool, CustomWords: str[] | undefined) => str;
    randomSymbol: (length: num, CustomSymbols: str[] | undefined) => str;
    randomMixed: (length: num, isCAPITAL: bool, CustomMixeds: str[] | undefined) => str;
    randomBoolean: () => bool;
}
export {};
//# sourceMappingURL=uniquegen.interface.d.ts.map