export type TextLinkDecoration = 'default' | 'none'; interface ClassNameForTextLinkStyleProps { /** * FLag to indicate if the text link is active */ isActive?: boolean; /** * Decoration style of the text */ decoration?: TextLinkDecoration; /** * Flag to indicate if icons should be forced to use parent color */ hasIconColor?: boolean; } export declare function classNameForTextLinkStyle({ isActive, decoration, hasIconColor, }: ClassNameForTextLinkStyleProps): string; export {};