import { BaseService } from '../infrastructure'; import { RequestOptions } from '../infrastructure/RequestHelper'; declare class Namespaces extends BaseService { all(options: RequestOptions): Promise; show(namespaceId: string | number): Promise; } export default Namespaces;