import { Dispatch, SetStateAction } from "react";
import { Actions } from "../IProps";
import React from "react";
interface IProps {
    states: {
        createTrigger: {
            get: boolean;
            set: Dispatch<SetStateAction<boolean>>;
        };
    };
    actions: Actions;
}
declare const _default: React.MemoExoticComponent<({ states, actions }: IProps) => React.JSX.Element>;
export default _default;
