import * as React from 'react'; import { LabelProps as CoreLabelProps } from 'wix-ui-core/dist/src/components/deprecated/label'; import { Size } from './constants'; export interface LabelProps { /** size of the label */ size?: Size; } export declare const Label: React.SFC;