lml-main
Version:
This is now a mono repository published into many standalone packages.
15 lines (14 loc) • 668 B
TypeScript
import * as React from 'react';
import * as Data from '../../../frequencies/data';
import { ModalRootComponentProps } from 'cosmoui';
export interface FrequencySelectModalProps extends ModalRootComponentProps {
}
export interface FrequencySelectModalComponentProps extends FrequencySelectModalProps {
regions: Data.FrequencyRegionModel[];
autoAllocationGlobal: boolean;
getServiceCentresByRegionName: (name: string) => any;
isSuperUser: boolean;
updateFrequenciesFromModal: () => any;
setAutoAllocationGlobal: (autoAllocationGlobal: boolean) => any;
}
export declare const FrequencySelectModal: React.ComponentClass<FrequencySelectModalProps>;