export type EffectNames = 'hoverUnderline' | 'hoverBg' | 'bounceToBottom' | 'bounceToTop' | 'hoverScaling' | 'noEffect';
export interface IEffectsProps {
    effect?: EffectNames;
    children: React.ReactNode;
}
