export default Customiser; declare class Customiser extends React.Component { constructor(props: any); values: {}; state: { element: any; }; UNSAFE_componentWillMount(): void; componentDidMount(): void; UNSAFE_componentWillReceiveProps(newProps: any): void; updateValues: boolean; componentDidUpdate(): void; getStylesText(): string; updateAllValues(newProps: any): boolean; updateProperties(newProps: any): void; updateElement(className: any): void; element: Element; resetStyles: () => void; exportStyles: () => void; updatePopoverText(): void; renderInputs(props: any): any; renderSection(section: any): JSX.Element; renderSections(sections: any): any; render(): JSX.Element; control: HTMLDivElement; } import React from "react";