import { AxiosInstance } from 'axios';
export interface FeedbackRequest {
    satisfaction_level: string;
    rating_justification: string;
    improvement_suggestions: string;
}
export interface FeedbackResponse {
    success: boolean;
    message?: string;
}
export declare function postFeedback(api: AxiosInstance, data: FeedbackRequest): Promise<FeedbackResponse>;
export declare class FeedbackApi {
    private api;
    constructor(api: AxiosInstance);
    sendFeedback(data: FeedbackRequest): Promise<FeedbackResponse>;
}
//# sourceMappingURL=feedbackApi.d.ts.map