import type { ApiClient } from '../../core/ApiClient'; import type { HasCreate } from '../../core/types'; import type { ClientFeedback, CreateClientFeedbackPayload } from './types'; export declare class ClientFeedbackApi implements HasCreate { private readonly client; private readonly basePath; constructor(client: ApiClient); /** Creates a client feedback record for a ticket (accountId, ticketId, and feedback text are required). */ create(body: CreateClientFeedbackPayload, headers?: Record): Promise; } //# sourceMappingURL=ClientFeedbackApi.d.ts.map