import type { PaperProps } from '@mui/material'; import React from 'react'; import type { HeadingFlexboxProps } from '../HeadingProps.js'; /** Props for {@link HeadingPaper}. */ export interface HeadingPaperProps extends HeadingFlexboxProps { paperProps?: PaperProps; } /** Paper-wrapped heading with optional start and end adornments. */ export declare const HeadingPaper: ({ ref, ...props }: HeadingPaperProps & { ref?: React.Ref; }) => React.JSX.Element; //# sourceMappingURL=HeadingPaper.d.ts.map