export declare const enum SegmentType { Static = "Static", Dynamic = "Dynamic" } export type SegmentStream = ({ type: SegmentType.Static; value: string; } | { type: SegmentType.Dynamic; value: T; })[];