interface CreateTypedFetchOptions {
    interfaceName: string;
    data: any;
    outputPath: string;
}
export declare function createTypedFetch(options: CreateTypedFetchOptions): Promise<{
    success: boolean;
    path: any;
    error?: undefined;
} | {
    success: boolean;
    path?: undefined;
    error?: undefined;
} | {
    success: boolean;
    error: unknown;
    path?: undefined;
}>;
export {};
