import { DynamicContentStore } from "../../flex-ui-core/src"; import * as React from "react"; import { WorkerDirectoryTabsChildrenKeys, WorkerDirectoryTabsProps } from "./WorkerDirectory.definitions"; /** * @classdesc This is an inner container for WorkersDirectory that renders the workers and queues tabs. Can be used to add or remove tabs on that component. * @component * @hideconstructor * @param {WorkerDirectoryTabs.WorkerDirectoryTabsProps} props - Properties to be passed to configure this component. * @category Components / Programmable * @subcategory Components */ export declare class WorkerDirectoryTabs extends React.PureComponent { static readonly friendlyName = "WorkerDirectoryTabs"; static readonly displayName = "WorkerDirectoryTabs"; /** * Dynamic content store * * @static * @type {DynamicContentStore} * @readonly */ static readonly Content: DynamicContentStore; /** * Default properties * * @static * @type {Partial} * @readonly */ static readonly defaultProps: Partial; render(): JSX.Element; }