export declare const TEXT = "text"; export declare const IMAGE = "image"; export declare const AUDIO = "audio"; export declare const _VALUE_MAP: { text: boolean; image: boolean; audio: boolean; }; /** * Checks if the given value is valid for the enum. * * @since 0.7.0 * * @param value - The value to check. * @returns True if the value is valid, false otherwise. */ export declare function isValidValue(value: string): boolean; /** * Gets the list of valid values for the enum. * * @since 0.7.0 * * @returns The list of valid values. */ export declare function getValues(): string[]; //# sourceMappingURL=modality.d.ts.map