import type { cssFn } from '@rocket.chat/css-in-js'; import type { ReactElement } from 'react'; import type { Falsy } from '../../types/Falsy'; import type { StylingProps } from './stylingProps'; export type StylingBoxProps = { children: ReactElement<{ className?: string; }>; className?: string | cssFn | (string | cssFn | Falsy)[]; } & Partial; export declare const StylingBox: ({ children, ...props }: StylingBoxProps) => ReactElement<{ className?: string; }, string | import("react").JSXElementConstructor>; export default StylingBox; //# sourceMappingURL=StylingBox.d.ts.map