import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; interface IProps extends IReactComponentProps { alignX?: 'none' | 'center'; alignY?: 'none' | 'center'; height?: string | 'fit-content'; shape?: 'circle' | 'rect-rounded'; tag?: string; width?: string | 'fit-content'; useFullHeight?: boolean; useFullWidth?: boolean; } export default class ClippedContent extends React.Component { static defaultProps: Partial; render(): React.JSX.Element; } export {}; //# sourceMappingURL=ClippedContent.d.ts.map