import { ReactNode } from 'react'; import { ContactDetails } from '../../types'; export declare type DevicePreviewRenderProps = { getContactDetails: () => Promise; setTitle: (title: ReactNode) => void; }; declare type Props = { mode: 'mobile' | 'desktop'; contactDetails?: 'available' | 'partial' | 'unavailable'; render: (props: DevicePreviewRenderProps) => JSX.Element; }; export declare const DevicePreview: ({ render, contactDetails, mode }: Props) => JSX.Element; export {};