import { Assign } from '../../types'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface FrameBaseProps { /** Additional content to be inserted into the frame's */ head?: React.ReactNode | undefined; /** Callback function to be executed when the frame is mounted */ onMount?: (() => void) | undefined; /** Callback function to be executed when the frame is unmounted */ onUnmount?: (() => void) | undefined; } export interface FrameProps extends Assign, FrameBaseProps> { } export declare const Frame: ForwardRefExoticComponent>;