import Validatable from '@alirya/validatable/validatable'; import Value from '@alirya/value/value'; export declare function AlphabetParameters(value: string, valid: boolean, subject?: string): string; export declare type AlphabetArgument = Validatable & Value & { subject?: string; }; export declare function AlphabetParameter({ valid, value, subject }: AlphabetArgument): string; declare namespace Alphabet { const Parameters: typeof AlphabetParameters; const Parameter: typeof AlphabetParameter; type Argument = AlphabetArgument; } export default Alphabet; //# sourceMappingURL=alphabet.d.ts.map