export { PddClient } from './lib/client.js';
export type { PddClientConfig } from './lib/client.js';
export interface PddResponse<T = any> {
    error_response?: {
        error_msg: string;
        sub_msg?: string;
        error_code: number;
        sub_code?: string;
    };
    [key: string]: any;
}
