import ConstraintInterface from "./ConstraintInterface";
declare class NotBlank implements ConstraintInterface {
    validate(data: string | number): boolean;
    getErrorMessage(): string;
}
export default NotBlank;
