/** * Validates client path format * Checks if sampleImagePath starts with one of the following formats: * - `/` (root path) * - `https://` (HTTPS URL) * - `base64:` (Base64 data) * @param path - The path to validate * @returns true if the path is valid, false otherwise */ export declare function validateClientPath(path: string | null): boolean; //# sourceMappingURL=client-path-validation.d.ts.map