import React from 'react'; import { Props, TrapezoidProps } from './Trapezoid'; export interface TrapezoidBoxProps extends Props { angle?: number; size?: string; reverseAngle?: boolean; direction?: 'top' | 'bottom' | 'left' | 'right'; correctionSize?: boolean; correctionBox?: boolean; slotProps?: Omit, 'root'> & { trapezoid?: Props; box?: Props; }; } export declare const TrapezoidBox: { (props: TrapezoidBoxProps): React.JSX.Element; Variants: { pythagoreanSize: string; background: "--variant-trapezoid-background"; border: "--variant-trapezoid-border"; borderImage: "--variant-trapezoid-borderImage"; boxShadow: "--variant-trapezoid-boxShadow"; }; };