import { PrototypeStruct } from '..';
export declare function isAnyString(s: any): s is string;
export declare type IsStringFn = (s: any) => boolean;
export declare const isString: PrototypeStruct;
declare global {
    interface StringConstructor {
        isString: IsStringFn;
    }
}
//# sourceMappingURL=is-string.d.ts.map