import type { InitOutput } from '@c15t/schema/types'; import type { FetcherContext } from '../fetcher'; import type { FetchOptions, ResponseContext } from '../types'; /** * API endpoint path for init */ export declare const INIT_PATH = "/init"; /** * Initialize consent manager * * @param context - Fetcher context * @param options - Optional fetch options * @returns Init response with jurisdiction, location, translations, branding */ export declare function init(context: FetcherContext, options?: FetchOptions): Promise>;