import React from 'react'; declare type BaseItemTypeProps = 'li' | 'div'; declare type TitleTypeProps = 'h2' | 'h3'; export interface LinkItemProps { children?: React.ReactNode; fontSize?: 'base' | 'lg' | 'xl'; title?: string; link?: string; } export interface ItemBaseProps { as?: keyof JSX.IntrinsicElements; } export interface BaseItemProps { as?: BaseItemTypeProps; } export interface TitleProps { as?: TitleTypeProps; } export declare const LinkItem: { ({ as: Component, children, link, }: BaseItemProps & LinkItemProps): JSX.Element; defaultProps: { as: string; }; displayName: string; } & { Content: { ({ children }: LinkItemProps): JSX.Element; displayName: string; }; Title: { ({ as, fontSize, title, }: TitleProps & LinkItemProps): React.DetailedReactHTMLElement<{ className: string; }, HTMLElement>; displayName: string; }; }; export {};