import { Color as ColorType } from '../../types.js';
import { INodeDefinition, ToInput, ToOutput } from '../../index.js';
import { Node } from '../../programmatic/node.js';
export default class NodeDefinition extends Node {
    static title: string;
    static type: string;
    static description: string;
    inputs: ToInput<{
        foreground: ColorType;
        background: ColorType;
        reference: ColorType;
        threshold: number;
        precision: number;
    }>;
    outputs: ToOutput<{
        inRange: boolean;
        color: ColorType;
        alpha: number;
    }>;
    constructor(props: INodeDefinition);
    execute(): void | Promise<void>;
}
//# sourceMappingURL=matchAlpha.d.ts.map