import * as React from 'react'; import { ButtonProps as CoreButtonProps } from 'wix-ui-core/dist/src/components/deprecated/button'; import { Skin, Priority, Size } from './constants'; export interface ButtonOwnProps extends CoreButtonProps { /**Skin of the Button (Styling)*/ skin?: Skin; /** Priority of the Button (Styling)*/ priority?: Priority; /** Size of the button (Styling) */ size?: Size; /** The button's text */ children?: string; } export declare type ButtonProps = ButtonOwnProps & CoreButtonProps; export declare const Button: React.SFC;