import type { InputProps } from '../types/input';
declare module '@sjsf/form' {
    interface UiOptions {
        shadcnText?: InputProps;
    }
}
declare const Text: import("svelte").Component<import("@sjsf/form/fields/widgets").WidgetCommonProps<string>, {}, "value">;
type Text = ReturnType<typeof Text>;
export default Text;
