export declare abstract class NavColorPalette {
    readonly primaryColor?: string;
    readonly secondaryColor?: string;
    readonly tertiaryColor?: string;
    readonly linkColor?: string;
    readonly linkActiveColor?: string;
    readonly backGroundColor?: string;
}
