import { StrictStyleOptions } from 'botframework-webchat-api';
export default function createSpinnerAnimationStyle({ spinnerAnimationBackgroundImage, spinnerAnimationHeight, spinnerAnimationWidth, spinnerAnimationPadding }: StrictStyleOptions): {
    backgroundImage: string;
    backgroundRepeat: string;
    backgroundSize: string;
    height: string | number;
    width: string | number;
    ':not(.webchat__spinner--rtl)': {
        marginRight: string | number;
    };
    '.webchat__spinner--rtl': {
        marginLeft: string | number;
    };
};
//# sourceMappingURL=SpinnerAnimation.d.ts.map