import * as React from "react"; export interface HeaderProps extends React.HTMLAttributes { /** Left side content (e.g., menu toggle, breadcrumbs) */ left?: React.ReactNode; /** Center content (e.g., title, search) */ center?: React.ReactNode; /** Right side content (e.g., user menu, notifications) */ right?: React.ReactNode; /** Page title */ title?: string; /** Search component */ search?: React.ReactNode; /** Company information */ company?: { name?: string; logoUrl?: string; onMoreClick?: () => void; }; /** User menu items */ userMenuItems?: Array<{ label: string; onClick: () => void; icon?: React.ReactNode; }>; /** User avatar props */ userAvatar?: { name?: string; role?: string; imageUrl?: string; badge?: React.ReactNode; }; /** Grid dots click handler */ onGridClick?: () => void; } export declare const Header: React.ForwardRefExoticComponent>; //# sourceMappingURL=header.d.ts.map