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