///
import { RecursivePartial } from '../typings';
import { IRaw } from '../components/core/blocks/basic/Raw';
export declare type RawProps = RecursivePartial & RecursivePartial & {
children?: JSX.Element | JSX.Element[] | string;
};
export declare function Raw(props: RawProps): JSX.Element;