import { type StateProp } from '@innet/dom'; import { type FlexProps } from '../../layout'; export type ButtonViews = 'primary' | 'secondary' | 'negative' | 'positive' | 'ghost'; export type ButtonProps = FlexProps; disabled?: StateProp; }>; export declare function Button({ view, loading, disabled, width, ...props }?: ButtonProps): any;