export type Environment = "local" | "staging" | "uat" | "production";
export interface ServerConfig {
    apiUrl: string;
    webAppUrl: string;
}
export interface SDKConfig {
    environment?: Environment;
    client_id: string;
    client_secret: string;
}
export interface ApiResponse<T = any> {
    success: boolean;
    data?: T;
    error?: string;
    message?: string;
}
