import { PaperProps } from '@mui/material'; export interface BottomFixedPaperProps extends PaperProps { /** * If true, the component will transition in. */ in?: boolean; /** * The position of the paper. * @default "fixed" */ position?: "fixed" | "absolute" | "sticky" | "static" | "relative"; /** * The padding of the paper. * @default y = 3, x = 2 */ padding?: number | string; /** * The direction of the paper. */ direction?: "row" | "column"; /** * By default the child component is not mounted immediately along with the * parent Transition component. If you want to "lazy mount" the component on * the first `in={true}` you can set `mountOnEnter`. After the first enter * transition the component will stay mounted, even on "exited", unless you * also specify `unmountOnExit`. */ mountOnEnter?: boolean | undefined; /** * By default the child component is unmounted after it reaches the * 'exited' state. Set `unmountOnExit` if you'd prefer to unmount the * component after it finishes exiting. */ unmountOnExit?: boolean | undefined; } declare const _default: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export default _default;