type State = { error: null | Error; loading: boolean; data: null | { result: string; }; }; export declare const useMailchimp: (options: { url: string; }) => [State, (data: { EMAIL: string; }) => void, () => void]; export {};