import React from "react"; import { BindComponent } from "@webiny/form"; interface ImagesListDesignSettingsProps { Bind: BindComponent; submit: (event: React.MouseEvent) => void; } declare const ImagesListDesignSettings: ({ Bind, submit }: ImagesListDesignSettingsProps) => React.JSX.Element; export default ImagesListDesignSettings;