import type { RemoteClawConfig } from "../config/config.js"; import type { ResolvedLineAccount } from "./types.js"; export { DEFAULT_ACCOUNT_ID } from "../routing/account-id.js"; export declare function resolveLineAccount(params: { cfg: RemoteClawConfig; accountId?: string; }): ResolvedLineAccount; export declare function listLineAccountIds(cfg: RemoteClawConfig): string[]; export declare function resolveDefaultLineAccountId(cfg: RemoteClawConfig): string; export declare function normalizeAccountId(accountId: string | undefined): string;