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>;
