import { InputFileInputUnion } from '../inputs'; import { ErrorUnion, OkUnion } from '../outputs'; /** * Removes an animation from the list of saved animations * @param {Object} params * @param {InputFileInputUnion} [params.animation] - Animation file to be removed * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type RemoveSavedAnimationMethod = (params: RemoveSavedAnimationParams, state?: Record) => Promise; export interface RemoveSavedAnimationParams { /** Animation file to be removed */ animation?: InputFileInputUnion; }