import React, { HTMLAttributes } from 'react';
import { ColorToken } from '@gdsc-dju/styled-components-theme';
interface NavigationLogoProps extends HTMLAttributes<HTMLDivElement> {
    customLogo?: React.ReactNode;
    title?: string;
    pointColor?: ColorToken | string;
}
export declare const StyledLogoWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
export declare const NavSubtitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
    color?: string | undefined;
}, never>;
export declare const LogoTitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
export declare const LogoTextWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
declare const NavigationLogo: React.ForwardRefExoticComponent<NavigationLogoProps & React.RefAttributes<HTMLDivElement>>;
export default NavigationLogo;
