export type VariableContentChannel = { id: string; name: string; }; export type VariableContentHostConfig = { channels: VariableContentChannel[]; selectedChannelId?: string; }; export declare const VariableContentChannelsContext: import('react').Context; export declare function useVariableContentChannels(): VariableContentHostConfig; export declare function resolveChannelLabel(channels: VariableContentChannel[], value: string): string;