declare const defaultProps: {
    walk: boolean;
    control: boolean;
    rotate: boolean;
};
declare type MinecraftSkinViewerProps = {
    skin: string;
    width: number;
    height: number;
    walk: boolean;
    rotate: boolean;
    control: boolean;
    zoom: boolean;
    background: String;
} & typeof defaultProps;
export declare const MinecraftSkinViewer: {
    ({ skin, width, height, walk, rotate, control, zoom, background }: MinecraftSkinViewerProps): JSX.Element;
    defaultProps: {
        walk: boolean;
        control: boolean;
        rotate: boolean;
    };
};
export {};
