export declare const CLOUD = "cloud"; export declare const SERVER = "server"; export declare const CLIENT = "client"; export declare const _VALUE_MAP: { cloud: boolean; server: boolean; client: 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=service-type.d.ts.map