import * as React from 'react'; interface IBuilderLabelProps { label?: React.ReactNode; children?: React.ReactNode; withLink: boolean; style: any; onClick?: React.MouseEventHandler; } export default class BuilderLabel extends React.Component { static defaultProps: { withLink: boolean; style: {}; }; render(): JSX.Element | null; } export {};