import { CreateCookieTable, SupportedLanguage } from './types'; export declare const PREDEFINED_COOKIE_TABLE_URL = "https://consents.almacareer.tech/acl-lda/categorization.json"; export interface ApiCookieEntry { pattern: string; name: string; provider: string; suggested_category: string; description: Record; } export declare const createCookieTable: (currentLanguage: SupportedLanguage) => CreateCookieTable;