import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { CreateSlotsAndSlotProps, SlotCommonProps, SlotProps } from '../../types/slot'; export interface FloatingActionBarSlotPropsOverrides { } export interface FloatingActionBarSlots { /** * The component that renders the root. * @default 'div' */ root?: React.ElementType; } export type FloatingActionBarSlotsAndSlotProps = CreateSlotsAndSlotProps; }>; export interface FloatingActionBarTypeMap

{ props: P & FloatingActionBarSlotsAndSlotProps & { /** * The component orientation. * @default 'horizontal' */ orientation?: 'horizontal' | 'vertical'; /** * How large the FloatingActionBar contents should be. * @default 'medium' */ size?: 'small' | 'medium' | 'large'; /** * If `true`, the component will be disabled. This means that all child items will also be disabled. * @default false */ disabled?: boolean; }; defaultComponent: D; } export type FloatingActionBarProps = OverrideProps, D>; export interface FloatingActionBarOwnerState extends Partial { }