import type { HTMLLabelAttributes } from 'svelte/elements';
import type { TRoot } from '../root/createRoot.svelte.js';
interface Props extends HTMLLabelAttributes {
root?: TRoot;
}
declare const Label: import("svelte").Component;
type Label = ReturnType;
export default Label;