type SchemaInput = string | Schema | ((input: any) => SchemaInput | Promise<SchemaInput>);
export type Schema = {
    [key: string]: SchemaInput;
};
export {};
