lml-main
Version:
This is now a mono repository published into many standalone packages.
13 lines (12 loc) • 415 B
TypeScript
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<{}>;