import { FC, ReactNode } from 'react';
export type TunnelEntryChildren = ReactNode | undefined | (() => ReactNode | undefined);
export interface TunnelEntryProps {
    id?: string;
    children?: TunnelEntryChildren;
    /** Static entry ID instead of generated ID by `useId` */
    staticEntryId?: string;
}
export declare const TunnelEntry: FC<TunnelEntryProps>;
export default TunnelEntry;
//# sourceMappingURL=TunnelEntry.d.ts.map