import type { ButtonProps as BaseProps, ButtonContentProps, ButtonSizeProps, ButtonViewProps } from '@sberdevices/plasma-core'; import type { ButtonView } from './Button.props'; export declare type ButtonProps = BaseProps & Partial & Partial> & ButtonContentProps; /** * Кнопка. * Поддерживает несколько режимов отображения (`view`) и размеров (`size`). */ export declare const Button: import("react").ForwardRefExoticComponent<(BaseProps & Partial> & Partial> & { text?: import("react").ReactNode; contentLeft?: import("react").ReactNode; contentRight?: undefined; children?: undefined; } & import("react").RefAttributes) | (BaseProps & Partial> & Partial> & { text?: import("react").ReactNode; contentLeft?: undefined; contentRight?: import("react").ReactNode; children?: undefined; } & import("react").RefAttributes) | (BaseProps & Partial> & Partial> & { text?: undefined; contentLeft?: undefined; contentRight?: undefined; children?: import("react").ReactNode; } & import("react").RefAttributes)>; //# sourceMappingURL=Button.d.ts.map