import type { SfItem } from '../structuredfield/SfItem.js'; import type { SfToken } from '../structuredfield/SfToken.js'; import type { CmObjectType } from './CmObjectType.js'; import type { CmStreamingFormat } from './CmStreamingFormat.js'; import type { CmStreamType } from './CmStreamType.js'; /** * A common media value. * * @internal */ export type CmValue = CmObjectType | CmStreamingFormat | CmStreamType | string | string[] | number | number[] | boolean | symbol | SfToken | SfItem | SfItem[]; //# sourceMappingURL=CmValue.d.ts.map