import * as React from 'react'; interface IButton { children?: React.ReactNode; onClick: () => void; /** * Styles button as negative style * * @default false */ negative?: boolean; } export declare const Button: React.FC; export {};