import { t as ChannelId } from "./channel-id.types-B_AcMzNT.js"; import { t as ChannelPairingAdapter } from "./pairing.types-BWE6gvH4.js"; //#region src/pairing/pairing-store.types.d.ts type PairingChannel = ChannelId; type ReadChannelAllowFromStoreForAccount = (params: { channel: PairingChannel; accountId: string; env?: NodeJS.ProcessEnv; }) => Promise; type UpsertChannelPairingRequestForAccount = (params: { channel: PairingChannel; id: string | number; accountId: string; meta?: Record; env?: NodeJS.ProcessEnv; pairingAdapter?: ChannelPairingAdapter; }) => Promise<{ code: string; created: boolean; }>; //#endregion export { ReadChannelAllowFromStoreForAccount as n, UpsertChannelPairingRequestForAccount as r, PairingChannel as t };