import * as React from 'react'; import { StyleProps } from './style'; export type UnstyledButtonProps = StyleProps & { id?: string; onClick?: (e: any) => void; text?: string | number; }; declare class UnstyledButton extends React.PureComponent { render(): JSX.Element; } export default UnstyledButton;