lml-main
Version:
This is now a mono repository published into many standalone packages.
13 lines (12 loc) • 488 B
TypeScript
import * as React from 'react';
import { CourierModel } from '@lml/cosmo-ts-data';
import { StylableComponentProps } from 'cosmoui';
export interface CourierByIdProps extends StylableComponentProps {
}
export interface CourierByIdComponentProps extends CourierByIdProps {
courier: CourierModel | null;
searchValue: string;
submitted: boolean;
showCourierDetails: (refId: string) => any;
}
export declare const CourierById: React.ComponentClass<CourierByIdComponentProps>;