import LeafCreatorCondition from "../../types/Leaf/Creator/Condition"; import LeafActionTemplate from '../../types/Leaf/Action/Template'; declare type MakeActionTemplateOptions = { condition?: LeafCreatorCondition; custom?: boolean; }; export declare const makeActionTemplate: (path?: string[], { condition, custom }?: MakeActionTemplateOptions) => LeafActionTemplate; export {};