export declare const isValidUrl: (url: string) => boolean; export declare const validateUrl: (url: string, errorMessage: string) => { isValid: boolean; error: string; }; export declare const saveHtmlCode: (htmlCode: string) => Promise; export declare const getHtmlCode: (url: string) => Promise;