import type { ResponsiveStyleValue } from '@theme-ui/css'; import type { Theme } from '../../theme'; import type { ComponentStyles } from '../../types/componentStyles'; export interface ButtonStylesProps { stretch?: ResponsiveStyleValue; variant?: keyof Theme['button']['variants']; size?: ResponsiveStyleValue; } export declare const buttonStyles: ComponentStyles;