import { DynamicContentStore } from "../../../flex-ui-core/src"; import * as React from "react"; import { WorkerSkillsChildrenKeys, WorkerSkillsChildrenProps, WorkerSkillsProps } from "./WorkerSkills.definitions"; /** * @classdesc This is a container for WorkerSkills that displays the skills section for the agent details. * Can be themed with `Theme.WorkerSkills` in [Theme](Theme). * @component * @hideconstructor * @param {WorkerSkills.WorkerSkillsProgrammableProps} props - Properties to be passed to configure this component. * @category Components / Programmable * @subcategory Components */ export declare class WorkerSkills extends React.PureComponent { static readonly displayName = "WorkerSkills"; /** * Dynamic content store * * @static * @type {DynamicContentStore} * @readonly */ static readonly Content: DynamicContentStore; /** * Default properties * * @static * @type {WorkerSkills.WorkerSkillsProps} * @readonly */ static readonly defaultProps: {}; render(): JSX.Element; }