import type { HttpClient, IncludeType } from '../../../../services/index.ts'; import type { ApiError, Response } from '../../../types/index.ts'; export type AutomaticProposalsInput = { privateToken: string; include?: IncludeType; }; export type GetAutomaticProposalsInput = { privateToken: string; include?: { include?: string[]; fields?: { [key: string]: string[]; }; }; }; declare const getAutomaticProposals: (http: HttpClient) => { query: (input: AutomaticProposalsInput) => Promise>; }; export default getAutomaticProposals;