import { CustomComponentLibraryWrappedClient } from './customComponentLibraryWrappedClient'; export type Header = { name: string; value: string; }; export declare const getCCLClient: (askForUnixSocket: boolean, headers: string[] | undefined, instance?: string, url?: string, accessToken?: string, pathToUnixSocket?: string, verbose?: boolean) => Promise; export declare const parseHeaders: (headers: string[]) => Header[];