/** * Workflows deployment module * * Deploys GitHub Actions workflows from templates */ export interface DeployOptions { skipExisting?: boolean; } /** * Deploy all workflows from templates to GitHub repository */ export declare function deployWorkflows(owner: string, repo: string, token: string, options?: DeployOptions): Promise; //# sourceMappingURL=workflows.d.ts.map