import * as React from 'react'; import { LabelWithOptions as CoreLabelWithOptions, LabelWithOptionsProps as CoreLabelWithOptionsProps } from 'wix-ui-core/dist/src/components/label-with-options'; export interface LabelWithOptionsProps { size?: 'large' | 'medium' | 'small'; } export declare type LabelWithOptionsType = React.SFC & { createOption: typeof CoreLabelWithOptions.createOption; createDivider: typeof CoreLabelWithOptions.createDivider; }; export declare const LabelWithOptions: LabelWithOptionsType;