import { DeviceBreakpointsType } from '../../../types/breakpoints/breakpoints';
import { NavigationCardTagType, NavigationCardTextType } from '../types/navigationCard';
import { NavigationCardStylesPropsType } from '../types/navigationCardTheme';
interface INavigationCardInfo {
    styles: NavigationCardStylesPropsType;
    innerContainersComponent?: 'div' | 'span';
    title?: NavigationCardTextType;
    description?: NavigationCardTextType;
    tag?: NavigationCardTagType;
    device: DeviceBreakpointsType;
    customHeight?: string;
}
export declare const NavigationCardInfo: (props: INavigationCardInfo) => JSX.Element;
export {};
