UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

15 lines (14 loc) 552 B
import * as React from 'react'; import { CourierModel } from '@lml/cosmo-ts-data'; import { ModalRootComponentProps } from 'cosmoui'; export interface CourierChangeFrequencyModalProps extends ModalRootComponentProps { currentModal: { modalProps: { courier: CourierModel; }; modalType: string; }; } export interface CourierChangeFrequencyModalComponentProps extends CourierChangeFrequencyModalProps { } export declare const CourierChangeFrequencyModal: React.ComponentClass<CourierChangeFrequencyModalProps>;