# AUTO GENERATED FILE - DO NOT EDIT

import typing  # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args

ComponentSingleType = typing.Union[str, int, float, Component, None]
ComponentType = typing.Union[
    ComponentSingleType,
    typing.Sequence[ComponentSingleType],
]

NumberType = typing.Union[
    typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]


class SearchUIGrid(Component):
    """A SearchUIGrid component.
A component that combines the filters, data header, and data view
of a `SearchUI` into a common grid layout.
Note that this must be used within a `SearchUIContainer`.

Keyword arguments:

- id (string; optional)

- exportDataButton (a list of or a singular dash component, string or number; optional)"""
    _children_props: typing.List[str] = ['exportDataButton']
    _base_nodes = ['exportDataButton', 'children']
    _namespace = 'dash_mp_components'
    _type = 'SearchUIGrid'


    def __init__(
        self,
        id: typing.Optional[typing.Union[str, dict]] = None,
        exportDataButton: typing.Optional[ComponentType] = None,
        **kwargs
    ):
        self._prop_names = ['id', 'exportDataButton']
        self._valid_wildcard_attributes =            []
        self.available_properties = ['id', 'exportDataButton']
        self.available_wildcard_properties =            []
        _explicit_args = kwargs.pop('_explicit_args')
        _locals = locals()
        _locals.update(kwargs)  # For wildcard attrs and excess named props
        args = {k: _locals[k] for k in _explicit_args}

        super(SearchUIGrid, self).__init__(**args)

setattr(SearchUIGrid, "__init__", _explicitize_args(SearchUIGrid.__init__))
