export type TAnimationProps = {
    outline?: {
        strokeDasharray: string;
        color: string;
        strokeWidth: string;
    };
    animationStart?: boolean;
    dimension?: {
        viewBox: string;
        pathDM: string;
        aspectRatio: string;
    };
    layout?: 'idle' | 'contentLock' | 'countdown' | 'indicator' | 'success';
    animateTo?: {
        startAnimationTo?: boolean;
        strokeDasharray?: string;
        strokeWidth?: string;
        delay?: number;
    };
    faceRotationSetting?: {
        direction: 'LEFT' | 'RIGHT' | 'UP' | 'DOWN';
        percentage: number;
    };
    isSuccessful?: boolean;
    onlySuccessFulStage?: boolean;
};
