import type { Guard } from "../types";
export interface StringConstraints {
    minLength?: number;
    maxLength?: number;
    pattern?: RegExp;
    trim?: boolean;
}
export declare function isString(constraints?: StringConstraints): Guard<string>;
//# sourceMappingURL=isString.d.ts.map