export declare class APIResponse {
    error: string;
    message: string;
    data: any;
    success: boolean;
}
