import { BaseError } from 'make-error'; export declare class InvalidStringError extends BaseError { constructor(); } export declare function isString(input: unknown): input is string; /** You might want to consider constraining this somehow to avoid display and storage bugs. */ export declare function string(input: unknown): string;