export interface ActionInputConfigInterface { required: boolean; description: string; default?: string; } export interface ActionInputsConfigInterface { [name: string]: ActionInputConfigInterface; } export declare const ActionRunsUsingNode12 = "node12"; export declare const ActionRunsUsingNode16 = "node16"; export declare const ActionRunsUsingNode20 = "node20"; export declare const ActionRunsUsingNode22 = "node22"; export declare const ActionRunsUsingNode24 = "node24"; type ActionRunsUsingNode = typeof ActionRunsUsingNode12 | typeof ActionRunsUsingNode16 | typeof ActionRunsUsingNode20 | typeof ActionRunsUsingNode22 | typeof ActionRunsUsingNode24; export interface ActionConfigInterface { name: string; inputs?: ActionInputsConfigInterface; runs: { using: ActionRunsUsingNode | "composite" | "docker"; image?: string; main?: string; pre?: string; post?: string; args?: string[]; }; [key: string]: any; } export {}; //# sourceMappingURL=ActionConfigInterface.d.ts.map