import { PropsWithChildren } from 'react';
export interface LinkOrContainerProps {
    href?: string;
    className?: string;
}
export declare function LinkOrContainer({ children, href, className, }: PropsWithChildren<LinkOrContainerProps>): string | number | boolean | Iterable<import('react').ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
