export declare const setStyleProperty: (element: HTMLElement, propertyName: string, value: string) => void; export declare const removeStyleProperty: (element: HTMLElement, propertyName: string) => void; export declare const animationEnd: (el: HTMLElement, callback: (ev?: TransitionEvent) => void) => () => void; export declare const generateKeyframeRules: (keyframes?: any[]) => string; export declare const generateKeyframeName: (keyframeRules: string) => string; export declare const getStyleContainer: (element: HTMLElement) => any; export declare const createKeyframeStylesheet: (keyframeName: string, keyframeRules: string, element: HTMLElement) => HTMLElement; export declare const addClassToArray: (classes: string[], className: string | string[]) => string[];