import { HTMLProps, ReactNode } from 'react';
import { type VariantProps } from 'class-variance-authority';
import { iconButtonVariants } from '../../action/IconButton';
export declare const navbarVariants: (props?: ({
variant?: "default" | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export declare const NavbarMenuItem: (props?: ({
size?: "small" | "large" | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export declare const NavbarIconButton: (props?: ({
size?: "small" | "large" | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export type NavbarProps = HTMLProps & {
LeftContent: ReactNode;
CenterContent?: React.ReactNode;
RightContent?: React.ReactNode;
};
export interface NavbarIconButtonProps extends React.ButtonHTMLAttributes, VariantProps {
children?: React.ReactNode;
}
//# sourceMappingURL=types.d.ts.map