import * as React from 'react'; export interface LabelProps { /** The appearance of the Label */ appearance?: 'primary' | 'secondary' | 'danger' | 'success'; /** The text inside. Ideally, maximum two words long. */ text: string; /** Allow the button to take the size of its parent container */ stretch?: boolean; } /** A component which serves as a system status indicator or highlighter */ declare const Label: ({ appearance, text, stretch, ...other }: LabelProps & React.HTMLAttributes) => JSX.Element; export default Label;