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