declare class AttendanceProviderMasterBase {
    _id?: string;
    atprv_provider_code?: string;
    atprv_provider_name?: string;
    atprv_auth_type?: "API_KEY" | "OAUTH" | "USERNAME_PASSWORD" | "TOKEN";
    atprv_sync_mode?: "PULL" | "WEBHOOK" | "BOTH";
    atprv_endpoint_template?: string;
    atprv_field_mapping_schema?: Record<string, unknown>;
    atprv_isactive?: boolean;
    atprv_created_at?: Date;
    atprv_updated_at?: Date;
}
declare class AttendanceProviderMaster extends AttendanceProviderMasterBase {
}
export { AttendanceProviderMasterBase, AttendanceProviderMaster };
