import { ImageProps as InitialImageProps } from '../../components/Image/Image'; export type ImageProps = Partial>; export interface DocsWithImageProps { /** Docs to show with imahe */ docs: string | JSX.Element; /** Props for image */ imageProps: ImageProps; } export declare const DocsWithImage: (props: DocsWithImageProps) => import("react/jsx-runtime").JSX.Element; export default DocsWithImage;