export interface PaperProps { /** * The content of the component. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ className?: string; /** * If `true`, rounded corners are Enabled. * @default false */ rounded?: boolean; }