import type { BoxProps, TypographyProps, TypographyTypeMap } from '@mui/material'; import type { PropsWithChildren } from 'react'; import React from 'react'; export interface EllipsizeRootProps extends BoxProps { beforeLineHeight?: string | number; } export type TypographyWithComponentProps = TypographyProps & { ellipsisPosition?: 'start' | 'end'; }; export interface EllipsizeBoxProps extends BoxProps { beforeLineHeight?: number | string; disableSharedRef?: boolean; ellipsisPosition?: 'start' | 'end'; innerWrapProps?: BoxProps; typographyProps?: TypographyWithComponentProps; } export declare const EllipsizeBox: { ({ ref, innerWrapProps, children, ellipsisPosition, disableSharedRef, typographyProps, ...props }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; //# sourceMappingURL=Ellipsize.d.ts.map