import React from 'react'; import { Color } from '@axelor/aos-mobile-ui'; interface HeaderBandProps { color: Color; text: string; showIf: boolean; } declare const HeaderBand: ({ color, text, showIf }: HeaderBandProps) => React.JSX.Element; export default HeaderBand;