import React from 'react'; export type SelectLabelProps = React.HTMLAttributes & { idRef?: string; label?: string; hasValue: boolean; }; export declare const SelectLabel: React.FC;