import { default as SkinImage } from './SkinImage';
export default class SkinAnimation {
    private readonly image;
    private readonly frames;
    private readonly type;
    private readonly expression;
    constructor({ image, frames, type, expression }: {
        image: SkinImage;
        frames: number;
        type: number;
        expression: number;
    });
    getImage(): SkinImage;
    getFrames(): number;
    getType(): number;
    getExpression(): number;
}
//# sourceMappingURL=SkinAnimation.d.ts.map