import { authLink } from './auth-link'; import { checkCode } from './check-code'; import { get } from './get'; import { getLists } from './get-lists'; import { remove } from './remove'; import { update } from './update'; type ApiDeclaration = { getLists: typeof getLists; authLink: typeof authLink; checkCode: typeof checkCode; get: typeof get; update: typeof update; remove: typeof remove; }; export declare const mailchimpApiDeclaration: ApiDeclaration; export {};