import type { AnimationFunctions, AnimationProps } from './types'; /** * Creates a new Animation. * @param props The animaiton props. * @returns A new `in` and `out` Animation functions. */ export declare const createAnimation: ({ initialStyles, keyframes }: AnimationProps) => AnimationFunctions;