import Validatable from '@alirya/validatable/validatable'; import Value from '@alirya/value/value'; export declare function NotEmptyParameters(value: string, valid: boolean, subject?: string): string; export declare type NotEmptyArgument = Validatable & Value & { subject?: string; }; export declare function NotEmptyParameter({ valid, value, subject, }: NotEmptyArgument): string; declare namespace NotEmpty { const Parameters: typeof NotEmptyParameters; const Parameter: typeof NotEmptyParameter; type Argument = NotEmptyArgument; } export default NotEmpty; //# sourceMappingURL=not-empty.d.ts.map