import type { ProjectCommandArguments } from '../../types/commands/common_arguments'; export interface CollaboratorEmail { /** @description email of the collaborator */ collaboratorEmail: string; } /** * `slack collaborators add` * @returns command output */ export declare const add: (args: ProjectCommandArguments & CollaboratorEmail) => Promise; /** * `slack collaborators list` * @returns command output */ export declare const list: (args: ProjectCommandArguments) => Promise; /** * `slack collaborators remove` * @param collaboratorEmail email of the user to be removed as a collaborator * @returns command output */ export declare const remove: (args: ProjectCommandArguments & CollaboratorEmail) => Promise; declare const _default: { add: (args: ProjectCommandArguments & CollaboratorEmail) => Promise; list: (args: ProjectCommandArguments) => Promise; remove: (args: ProjectCommandArguments & CollaboratorEmail) => Promise; }; export default _default; //# sourceMappingURL=collaborator.d.ts.map