import type { KlawConfig } from "../config/types.klaw.js"; import { type MediaKind } from "./constants.js"; export declare function resolveConfiguredMediaMaxBytes(cfg?: KlawConfig): number | undefined; export declare function resolveGeneratedMediaMaxBytes(cfg: KlawConfig | undefined, kind: MediaKind): number; export declare function resolveChannelAccountMediaMaxMb(params: { cfg: KlawConfig; channel?: string | null; accountId?: string | null; }): number | undefined;