import type { Snippet } from 'svelte';
interface Props {
    for: string;
    class?: string;
    textOptional?: string;
    isRequired?: boolean;
    showOptionalText?: boolean;
    children?: Snippet;
}
declare const Label: import("svelte").Component<Props, {}, "">;
type Label = ReturnType<typeof Label>;
export default Label;
