export declare const styles: (theme: any) => { /* Styles applied to the root element. */ root: { display: string; padding: number; }; /* Styles applied to the root element if `orientation="vertical"`. */ vertical: { flexDirection: string; }; /* Styles applied to the children. */ grouped: {}; /* Styles applied to the children if `orientation="horizontal"`. */ groupedHorizontal: { // '&:not(:first-child)': { // marginLeft: -1, // borderLeft: '1px solid ', // borderTopLeftRadius: 25, // borderBottomLeftRadius: 25, // }, // '&:not(:last-child)': { // borderTopRightRadius: 25, // borderBottomRightRadius: 25, // }, borderRadius: number; padding: number; paddingRight: number; "&:not(:first-child)": { marginTop: number; borderRadius: number; paddingRight: number; padding: number; }; "&:not(:last-child)": { padding: number; borderRadius: number; paddingRight: number; }; }; /* Styles applied to the children if `orientation="vertical"`. */ groupedVertical: { borderRadius: number; padding: number; paddingRight: number; "&:not(:first-child)": { marginTop: number; borderRadius: number; paddingRight: number; padding: number; }; "&:not(:last-child)": { padding: number; borderRadius: number; paddingRight: number; }; }; }; /** * Explicitly cast the HOC to any to avoid non-portable inferred React types in declaration output. * @type {any} */ declare const AmbientToggleButtonGroupDefaultExport: any; export default AmbientToggleButtonGroupDefaultExport; //# sourceMappingURL=AmbientToggleButtonGroupDefault.d.ts.map