import * as React from 'react';
import { CourierModel } from '@lml/cosmo-ts-data';
export interface CouriersListProps {
}
export interface CouriersListComponentProps extends CouriersListProps {
    couriers: CourierModel[];
    expandedCouriers: string[];
    firstCourierIsActive: boolean;
    showNoCouriersMessage: boolean;
    isSearched: boolean;
}
export declare const CouriersList: React.ComponentClass<{}>;
