import { Method } from 'axios';
export declare type Proxy = {
    url: string;
    method: Method;
    headers?: Record<string, string>;
    query?: Record<string, string>;
    body?: Record<string, unknown>;
    allowedMethods?: Method[];
    statusCode?: number;
};
