import { Wretcher } from 'wretch'; import { Auth } from './schema/auth.schema'; import type { Post } from './types'; export interface ActionCreators { getToken: Post, Auth>; getCampaigns: Post, Record>; } export declare const getActionCreators: (gateway: Wretcher) => ActionCreators; export declare const useActionCreators: () => { actionCreators: ActionCreators; headers: Record; };