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; export type TermsOfServiceAcceptanceInfoEndpoint = ExtractStrict; type AcceptanceInfosResponse = ServiceAgreementAcceptanceInfos; export type QueryKeyTermsOfServiceAcceptanceInfos = ['termsOfServiceAcceptanceInfos']; export declare const useTermsOfServiceAcceptanceInfos: (options?: QueryOptions) => import("@tanstack/preact-query").UseQueryResult; export {};