import { PropsWithChildren } from 'react';
type Props = {
    /** Whether the node panel is selected */
    selected: boolean;
    /** The content of the node panel */
    children?: React.ReactNode;
    /** css className of the node panel */
    className?: string;
};
export declare const NodePanel: {
    Root: import('react').NamedExoticComponent<Props>;
    Header: import('react').NamedExoticComponent<PropsWithChildren<{
        className?: string;
    }>>;
    Content: import('react').NamedExoticComponent<PropsWithChildren<{
        className?: string;
        isVisible?: boolean;
    }>>;
    Handles: import('react').NamedExoticComponent<PropsWithChildren<{
        isVisible?: boolean;
        alignment?: "center" | "header";
    }>>;
};
export {};
