import type { ConnectorAccount } from '../../connectors/types.js'; export declare function getConnectorAccount(id: string): ConnectorAccount | undefined; export declare function listConnectorAccounts(options?: { principalId?: string; connectorId?: string; }): ConnectorAccount[]; export declare function refreshConnectorAccountCurrent(accountId: string): ConnectorAccount | undefined; export declare function reconcileConnectorAccount(input: { connectionId: string; identityKey: string; identity: Record; }): ConnectorAccount;