export type InteractionProperty = { hover?: { feedbackOpacity?: string; animationDuration?: string; animationTiming?: string; animation?: string; }; }; export type CreatedInteractionTheme = { hover: { feedbackOpacity: string; animationDuration: string; animationTiming: string; animation: string; }; }; export declare const defaultInteraction: CreatedInteractionTheme; export declare const createInteraction: (userInteraction?: InteractionProperty) => CreatedInteractionTheme;