/**
 * Gets the duration in milliseconds for an animation property.
 * @param animation - The animation property to get the duration for.
 * @returns The duration in milliseconds.
 */
export declare const getDurationMs: (animation: string) => {
    duration: number;
    delay: number;
};
