import React from 'react'; import type { Colors, CommonComponentProps, Dimensions, MarginModifierProp, ModifierClassProp, PaddingModifierProp } from '../types'; import type { GetRef } from '../utils/refs'; interface ButtonPlainProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp, PaddingModifierProp { 'aria-controls'?: string; 'aria-expanded'?: React.AriaAttributes['aria-expanded']; children?: React.ReactNode; color?: Colors; disabled?: boolean; display?: 'block' | 'inline-block'; getRef?: GetRef; hoverColor?: Colors; id?: string; name?: string; onClick?: React.MouseEventHandler; title?: string; truncate?: boolean; type?: 'button' | 'submit'; underlined?: boolean; width?: Dimensions; } export declare function ButtonPlain({ _modifierClass, 'aria-controls': ariaControls, 'aria-expanded': ariaExpanded, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, color, disabled, display, getRef, hoverColor, id, margin, name, onClick, padding, title, truncate, type, underlined, width, ...rest }: ButtonPlainProps): React.JSX.Element; export {};