import React, { type PropsWithChildren } from "react"; interface ChildrenProps { children: React.ReactNode | React.ReactNode[]; } export declare const IDEHeader: { (props: ChildrenProps): JSX.Element; Left: (props: PropsWithChildren<{ logo: React.ReactNode; }>) => JSX.Element; Center: (props: ChildrenProps) => JSX.Element; Right: (props: ChildrenProps) => JSX.Element; }; export {};