export interface StandardSchemaField {
    isOptional: boolean;
    type: string;
    shape?: Record<string, StandardSchemaField>;
}
export interface StandardSchema {
    getField(path: string): StandardSchemaField | null;
}
