import * as solid_js from 'solid-js'; import { ValidComponent } from 'solid-js'; import { ElementOf, PolymorphicProps } from './polymorphic/index.js'; import { F as FormControlDataSet } from './form-control-description-330657bc.js'; interface FormControlLabelOptions { } interface FormControlLabelCommonProps { id: string; ref: T | ((el: T) => void); } interface FormControlLabelRenderProps extends FormControlLabelCommonProps, FormControlDataSet { for: string | undefined; } type FormControlLabelProps = FormControlLabelOptions & Partial>>; /** * The label that gives the user information on the form control. */ declare function FormControlLabel(props: PolymorphicProps>): solid_js.JSX.Element; export { FormControlLabel as F, FormControlLabelOptions as a, FormControlLabelCommonProps as b, FormControlLabelRenderProps as c, FormControlLabelProps as d };