import { StrictStyleOptions } from 'botframework-webchat-api';
export default function createFileContentStyle({ accent, bubbleTextColor, paddingRegular, primaryFont }: StrictStyleOptions): {
    color: string;
    display: string;
    fontFamily: string;
    padding: number;
    '& .webchat__fileContent__badge': {
        justifyContent: string;
    };
    '& .webchat__fileContent__buttonLink': {
        alignItems: string;
        color: string;
        textDecoration: string;
        '&:focus': {
            backgroundColor: string;
        };
    };
    '& .webchat__fileContent__downloadIcon': {
        fill: string;
        padding: number;
        '&:not(.webchat__fileContent__downloadIcon--rtl)': {
            marginLeft: number;
        };
        '&.webchat__fileContent__downloadIcon--rtl': {
            marginRight: number;
        };
    };
    '& .webchat__fileContent__fileName': {
        color: string;
    };
};
//# sourceMappingURL=FileContent.d.ts.map