import type { HTMLAttributes } from 'svelte/elements';
type Props = HTMLAttributes<HTMLLegendElement | HTMLLabelElement> & {
    tag?: 'label' | 'legend';
    required?: boolean;
    for?: string;
};
declare const Label: import("svelte").Component<Props, {}, "">;
type Label = ReturnType<typeof Label>;
export default Label;
