import * as React from 'react'; import './index.scss'; interface ButtonsProps { btnContent?: 'string'; type?: 'string'; size?: 'string'; listRouter?: 'string'; } export default class Buttons extends React.PureComponent { state: { btnContent: string; style: {}; type: string; size: string; href: string; listRouter: string; siteMenuId: string; dataArr: any[]; }; props: any; setState: any; constructor(props: any); componentDidMount(): void; getData: (val: any) => void; componentWillReceiveProps(nextProps: any): void; linkRouter(href: any): void; render(): JSX.Element; } export {};