interface Options {
    account_id: string;
    project_id: string;
}
export default function isCollaborator({ account_id, project_id, }: Options): Promise<boolean>;
export {};
