import * as React from 'react'; import { Theme } from '../../styled'; declare const StyledRoot: React.ForwardRefExoticComponent, HTMLElement>, "appearance" | "size" | "diffused" | "hasScrolled"> & { hasScrolled?: (boolean | Partial>) | undefined; size?: ("md" | "lg" | Partial>) | undefined; diffused?: (boolean | Partial>) | undefined; appearance?: ("rounded" | "standard" | Partial>) | undefined; } & { as?: React.ElementType; }>; declare const Container: React.ForwardRefExoticComponent, HTMLDivElement>, never> & { as?: React.ElementType; }>; type TopBarProps = React.ComponentProps & React.ComponentProps & React.ComponentProps; export declare const TopBar: { ({ size, diffused, theme, appearance, ...rest }: React.PropsWithChildren): React.JSX.Element; displayName: string; } & { Brand: React.ForwardRefExoticComponent, HTMLAnchorElement>, never> & { as?: React.ElementType; }>; BrandLogo: ({ src, alt, className }: Pick, "src" | "alt"> & { className?: string; }) => React.JSX.Element; BrandName: React.ForwardRefExoticComponent, HTMLParagraphElement>, "size" | "noCapsize" | "weight" | "family"> & { size?: ("sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | Partial>) | undefined; noCapsize?: (boolean | Partial>) | undefined; weight?: ("bold" | "normal" | Partial>) | undefined; family?: ("display" | "body" | "mono" | Partial>) | undefined; } & { as?: React.ElementType; }, "as"> & { as?: "blockquote" | "caption" | "dd" | "dt" | "figcaption" | "li" | "p" | "span" | "legend" | React.ComponentType | React.ElementType; }, "ref"> & React.RefAttributes, never> & { as?: React.ElementType; }>; ActionIcon: React.ForwardRefExoticComponent, HTMLButtonElement>, "appearance" | "size" | "theme" | "isRounded"> & { theme?: ("primary" | "white" | "neutral" | "primaryDark" | "success" | "warning" | "danger" | Partial>) | undefined; appearance?: ("simple" | "outline" | "solid" | Partial>) | undefined; size?: ("sm" | "md" | "lg" | "xs" | Partial>) | undefined; isRounded?: (boolean | Partial>) | undefined; } & { as?: React.ElementType; }, "children" | "label" | "hasTooltip" | "tooltipSide" | keyof import("../..").NavigatorActions> & { children: React.ReactNode; label: string; } & Omit & import("../..").NavigatorActions, "ref"> & React.RefAttributes, "size" | "children"> & { icon: React.FC>; label: string; }, "ref"> & React.RefAttributes>; Divider: () => React.JSX.Element; }; export {};