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