import type { LabelProps } from '../types/label';
declare module '@sjsf/form' {
    interface UiOptions {
        shadcnLabel?: LabelProps;
    }
}
declare const Label: import("svelte").Component<import("@sjsf/form/fields/components").ComponentCommonProps & {
    title: string;
}, {}, "">;
type Label = ReturnType<typeof Label>;
export default Label;
