import React from 'react'; import { BoxProps, NativeAttributes } from '../../Box'; export declare type InputLabelProps = NativeAttributes<'label'> & Pick & { /** Whether the label should be raised up or not. Defaults to `true` */ raised?: boolean; }; declare const InputLabel: React.FC; export default InputLabel;