declare const Component: {
    styleOverrides: {
        buyButtonRoot: ({ theme }: {
            theme: any;
        }) => {
            border: string;
            '&:hover, &:active': {
                backgroundColor: any;
                color: any;
                border: string;
                '& .MuiIcon-root': {
                    color: any;
                };
            };
        };
    };
};
export default Component;
