import type { StringSchemaProps } from './types.js'; export declare class StringSchema { type: 'string'; props: PROPS; constructor(props: PROPS); get checked(): boolean; check(path?: string): void; }