import * as React from 'react';
export interface CourierIdFormProps {
}
export interface CourierIdFormComponentProps extends CourierIdFormProps {
    destroyForm: (formName: string) => any;
    fetchCourierById: (courierId: string, args: any) => any;
    searchValue: string;
}
export declare const CourierIdForm: React.ComponentClass<CourierIdFormProps>;
