import { LismComponentProps } from '../../Lism/Lism'; import { CssValue } from '../../../lib/types/LayoutProps'; export interface DecoratorOwnProps { size?: CssValue; } export type DecoratorProps = LismComponentProps & DecoratorOwnProps; export default function Decorator(props: DecoratorProps): import("react").JSX.Element;