import CustomEasing from './custom-easing.interface';
export default interface EasingOptions {
    builtIn: string[];
    custom: CustomEasing;
}
