export declare const tagify: (str: string) => string; /** Extract {{variable}} placeholders from a base_url or path. Returns unique keys. */ export declare const extractBaseUrlVariables: (baseUrl: string) => string[]; /** Resolve {{key}} and :key in url with values from variables array. */ export declare const resolveBaseUrlVariables: (url: string, variables: Array<{ key: string; value: string | number | unknown; }> | undefined) => string; export declare const areObjectsEqual: (smallerObject: any, biggerObject: any) => boolean;