import React from "react"; export interface MediaProps { children: React.ReactNode; header?: React.ReactNode; /** * By detault content is placed the middle of the available space. * Embedded content will be placed 20% from the top, * because top position of the container is used in calculation which will not be correct in modals. */ embedded?: boolean; /** * To use colors from theme, follow format -> $name-$value (e.g. purple-100). * Regular color names and hash values are also supported. * @default orange-90 */ desktopBackgroundColor?: string; /** * To use colors from theme, follow format -> $name-$value (e.g. purple-100). * Regular color names and hash values are also supported. * @default orange-90 */ mobileBackgroundColor?: string; } export declare const Media: ({ children, header, embedded, desktopBackgroundColor, mobileBackgroundColor }: MediaProps) => JSX.Element;