import * as React from 'react'; import { WithDataAttributes } from "./DataAttributes.mjs"; export type { DataAttributesOverrides, WithDataAttributes } from "./DataAttributes.mjs"; export type EventHandlers = Record>; export type WithOptionalOwnerState = Omit & Partial>; export type SlotComponentProps = WithDataAttributes> & TOverrides> | ((ownerState: TOwnerState) => WithDataAttributes> & TOverrides>); export type SlotComponentPropsWithSlotState = WithDataAttributes> & TOverrides> | ((ownerState: TOwnerState, slotState: TSlotState) => WithDataAttributes> & TOverrides>);