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