import { ColorProp, Theme } from '../types'; export interface ButtonProps { disabled?: boolean; children: Node; color?: ColorProp; theme?: Theme; autoWidth?: boolean; } export declare const getHoverBgColor: (props: ButtonProps) => string; declare const _default: import("styled-components").FlattenInterpolation>[]; export default _default;