@vicinae/api
    Preparing search index...

    Variable Form

    Form: FC<Form.Props> & {
        Checkbox: FC<Form.Checkbox.Props>;
        DatePicker: FC<Form.DatePicker.Props> & {
            isFullDay: (value: undefined | null | Date) => boolean;
            Type: typeof DatePickerType;
        };
        Description: FC<Form.Description.Props>;
        Dropdown: FC<Form.Dropdown.Props> & {
            Item: FC<DropdownItemProps>;
            Section: FC<DropdownSectionProps>;
        };
        FilePicker: FC<Form.FilePicker.Props>;
        LinkAccessory: (__namedParameters: Form.LinkAccessory.Props) => Element;
        PasswordField: FC<Form.PasswordField.Props>;
        Separator: () => Element;
        TagPicker: FC<Form.TagPicker.Props> & {
            Item: FC<Form.TagPicker.Item.Props>;
        };
        TextArea: FC<Form.TextArea.Props>;
        TextField: FC<Form.TextField.Props>;
    }