import { FunctionComponent, ReactElement } from 'react'; import { b as PilotConfig, l as PilotStateProps } from '../../types-3e2ea54d.js'; import 'next/types'; interface PilotAreaProps { autoLoad?: boolean; children?: any; config?: PilotConfig; defaultPath?: string | null; name?: string; persistPlaceholder?: boolean; Placeholder?: (visible: boolean) => ReactElement; renderContent?: 'always' | 'first-load' | 'never'; renderPlaceholder?: 'always' | 'first-load' | 'never'; tag?: string; } declare const PilotArea: FunctionComponent; export { PilotArea };