import type { HttpClient } from '../../http/client';
import { CreateCompanyPatient } from './protocols/create.protocols';
import { ListCompanyPatients } from './protocols/list.protocols';
export declare class CompanyPatients {
    private readonly httpClient;
    constructor(httpClient: HttpClient);
    list(input: ListCompanyPatients.Input, options?: ListCompanyPatients.Options): Promise<ListCompanyPatients.Response>;
    create(input: CreateCompanyPatient.Input, options?: CreateCompanyPatient.Options): Promise<CreateCompanyPatient.Response>;
}
//# sourceMappingURL=index.d.ts.map