export declare const USER = "user"; export declare const MODEL = "model"; export declare const SYSTEM = "system"; export declare const _VALUE_MAP: { user: boolean; model: boolean; system: boolean; }; /** * Checks if the given value is valid for the enum. * * @since 0.2.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.2.0 * * @returns The list of valid values. */ export declare function getValues(): string[]; //# sourceMappingURL=content-role.d.ts.map