@vicinae/api
    Preparing search index...

    Variable Form

    Form: FC<Form.Props> & {
        Checkbox: FC<CheckboxProps>;
        DatePicker: FC<DatePickerProps> & {
            isFullDay: (value: undefined | null | Date) => boolean;
            Type: typeof DatePickerType;
        };
        Description: FC<DescriptionProps>;
        Dropdown: FC<DropdownProps> & {
            Item: FC<DropdownItemProps>;
            Section: FC<DropdownSectionProps>;
        };
        FilePicker: FC<FilePickerProps>;
        LinkAccessory: (
            __namedParameters: { target: string; text: string },
        ) => Element;
        PasswordField: FC<PasswordFieldProps>;
        Separator: () => Element;
        TagPicker: FC<TagPickerProps> & {
            Item: FC<{ icon: Image.ImageLike; title: string; value: string }>;
        };
        TextArea: FC<TextAreaProps>;
        TextField: FC<TextFieldProps>;
    }