import type { ExtractStrict } from 'type-fest';
import type { ServiceAgreementAcceptanceInfos } from '../../core/models/api/contracts';
import type { EndpointFromPaths, QueryOptions } from '../types';
import type { paths } from './termsOfService.contract';
type TermsOfServiceEndpoints = EndpointFromPaths<keyof paths>;
export type TermsOfServiceAcceptanceInfoEndpoint = ExtractStrict<TermsOfServiceEndpoints, `legalEntities/${string}/termsOfService/termsOfServiceAcceptanceInfos`>;
type AcceptanceInfosResponse = ServiceAgreementAcceptanceInfos;
export type QueryKeyTermsOfServiceAcceptanceInfos = ['termsOfServiceAcceptanceInfos'];
export declare const useTermsOfServiceAcceptanceInfos: (options?: QueryOptions<AcceptanceInfosResponse>) => import("@tanstack/preact-query").UseQueryResult<ServiceAgreementAcceptanceInfos, Error>;
export {};
