import { Workflows } from '@tapis/tapis-typescript';
type ListAllArchivesParams = {
    groupIds: Array<string>;
};
declare const listAll: (params: ListAllArchivesParams, basePath: string, jwt: string) => Promise<Workflows.RespArchiveList>;
export default listAll;
