declare type TimingFunctionType = 'ease' | 'linear' | 'ease-in' | 'ease-out' | 'ease-in-out'; export declare const getTimingFunctionType: (type?: string | undefined) => TimingFunctionType | undefined; export {};