import type { LinkProps } from '@utrecht/link-react'; import { HTMLAttributes, PropsWithChildren } from 'react'; import type { LinkButtonProps } from './LinkButton'; export interface NavListProps extends HTMLAttributes { appearance?: undefined | string | 'center'; inlineSizeAuto?: boolean; } export declare const NavList: import("react").ForwardRefExoticComponent>; export interface NavListLinkProps extends LinkProps { center?: boolean; } export declare const NavListLink: { ({ center, children, className, ...restProps }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; export interface NavListLinkButtonProps extends LinkButtonProps { center?: boolean; } export declare const NavListLinkButton: { ({ center, children, className, ...restProps }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; //# sourceMappingURL=NavList.d.ts.map