/** * Import React libraries. */ import * as React from 'react'; import { Size } from '../types'; export type LabelProps = { inputId: string; text: string; size?: Size.Small | Size.Medium; margin?: string; required?: boolean; showCopyButton?: boolean; }; declare const InputLabel: React.FunctionComponent; export default InputLabel;