interface CreateOptions { name: string; local: boolean; description?: string; triggers: string[]; } export declare function create(opts: CreateOptions): Promise; export {};