import { AutoAcceptCredential } from '../models/CredentialAutoAcceptType'; /** * Returns the credential auto accept config based on priority: * - The record config takes first priority * - Otherwise the agent config * - Otherwise {@link AutoAcceptCredential.Never} is returned */ export declare function composeAutoAccept(recordConfig: AutoAcceptCredential | undefined, agentConfig: AutoAcceptCredential | undefined): AutoAcceptCredential;