import type { FC } from 'react'; import React from 'react'; export interface LiftedProp { componentPath: string[]; propPath: string[]; } export interface FrameComponentProps { liftedProps?: LiftedProp[]; /** * @TJS-ignore */ children: React.ReactNode; } export declare const FrameComponent: FC; export default FrameComponent;