/** * Type guard for string arrays */ export declare function isStringArray(value: unknown): value is string[]; /** * Type guard for strings */ export declare function isString(value: unknown): value is string; /** * Type guard for numbers */ export declare function isNumber(value: unknown): value is number; /** * Type guard for booleans */ export declare function isBoolean(value: unknown): value is boolean; //# sourceMappingURL=type-guards.d.ts.map