import { type SchemaName } from './schemas'; export declare const CHANNEL_TOPIC_PREFIX = "/spacedatanetwork/channels/"; export interface ParsedChannelId { channelId: string; sourceId: string; standardCode: string; feedUuid: string | null; } export interface ChannelIdInput { sourceId: string; standardCode: string; feedUuid?: string | null; } export declare function assertStandardCode(value: string): string; export declare function schemaNameFromStandardCode(standardCode: string): SchemaName; export declare function standardCodeFromSchemaName(schemaName: string): string; export declare function parseChannelId(channelId: string): ParsedChannelId; export declare function formatChannelId(input: ChannelIdInput): string; export declare function channelDiscoveryTopic(standardCode: string): string; //# sourceMappingURL=channels.d.ts.map