export declare type GenerateSchema = {
    configPath: string;
    identifier: string;
    filePath: string;
    resolveCustomGenerics?: {
        [key: string]: (params: any) => any;
    };
    extension: ".tsx" | ".ts";
};
export declare const generateSchema: ({ configPath, filePath, identifier, resolveCustomGenerics, extension }: GenerateSchema) => {
    [key: string]: any;
};
