interface PropsType {
    visible: boolean;
    mainInfo: any;
    editInfo: any;
    setVisible: (visible: boolean) => void;
    onChange: (conditions: any[]) => void;
}
export declare const ConditionsMaker: ({ visible, mainInfo, editInfo, setVisible, onChange }: PropsType) => JSX.Element;
export {};
