import { Context } from '@actions/github/lib/context.js'; type OptionType = Partial<{ notCheckPrTarget: boolean; notCheckWorkflowRun: boolean; }>; /** * @param {object} targets targets * @param {Context} context context * @param {OptionType} options options * @return {boolean} is target event? */ export declare const isTargetEvent: (targets: any, context: Context, options?: OptionType) => boolean; /** * @param {string[]} includes include labels * @param {string[]} excludes exclude labels * @param {Context} context context * @return {boolean} is target labels? */ export declare const isTargetLabels: (includes: string[], excludes: string[], context: Context) => boolean; export {};