import { AbstractPublicEndpoint } from '../../../model/endpoint/AbstractPublicEndpoint';
import { CreateDefinition } from '../../../model/endpoint/AbstractEndpoint.types';
import { Carrier } from './Carrier.types';

export type GetCarriersDefinition = CreateDefinition<{
    name: typeof GetCarriers.name;
    response: Carrier[];
}>;
/**
 * Get all carriers.
 */
export declare class GetCarriers extends AbstractPublicEndpoint<GetCarriersDefinition> {
    readonly name = "getCarriers";
    readonly path = "carriers";
    readonly property = "carriers";
}
