import { AxiosRequestHeaders } from "axios";
export interface AuthConfigModel {
    clientId: string;
    authCodeEndpoint: SaveTokenEndpointModel;
    idObject: any;
    scope: string;
    redirectUri?: string;
}
export interface SaveTokenEndpointModel {
    endpointUrl: string;
    headers?: AxiosRequestHeaders;
    method?: string;
}
//# sourceMappingURL=auth-config-model.d.ts.map