import { type IOptiGraphClient } from '@remkoj/optimizely-graph-client/client'; import { type ChannelDefinition } from "@remkoj/optimizely-graph-client/channels"; import { type Route } from "@remkoj/optimizely-graph-client/router"; import { type ContentLinkWithLocale } from "@remkoj/optimizely-graph-client"; export declare enum SystemLocales { All = "ALL", Neutral = "NEUTRAL" } export type LookupResponse = [ Route | null, ContentLinkWithLocale, string[], string, Record | null ]; export declare function getChannelId(client: IOptiGraphClient, channel?: ChannelDefinition | string): string | undefined;