interface CommandProperties { [key: string]: string; } export declare function issueCommand(command: string, properties: CommandProperties, message: string | Error): void; export declare function error(message: string | Error): void; export declare function setFailed(message: string | Error): void; export declare function getInput(name: string, required?: boolean): string; export {};