import type { FilterType } from './filterFormatter'; import type { IncludeType } from './includeFormatter'; type EndPointMakerType = { includes?: IncludeType; filter?: FilterType; pagination?: { per: string; page: string; }; }; export declare const endpointMaker: ({ includes, filter, pagination, }: EndPointMakerType) => string; export {};