/** * Indicates whether or not a container should be shown. * @param {object} container The container to consider. * @param {object} data The top-level form data. * @returns Boolean true if the container should be shown; false if not. */ declare const showContainer: (container: any, data: any) => any; export default showContainer;