import type { SKYKOIConfig } from "../config/config.js"; import type { ResolvedLineAccount } from "./types.js"; export declare const DEFAULT_ACCOUNT_ID = "default"; export declare function resolveLineAccount(params: { cfg: SKYKOIConfig; accountId?: string; }): ResolvedLineAccount; export declare function listLineAccountIds(cfg: SKYKOIConfig): string[]; export declare function resolveDefaultLineAccountId(cfg: SKYKOIConfig): string; export declare function normalizeAccountId(accountId: string | undefined): string;