/// import CSS from 'csstype'; declare function UncontrolledDualButtons({ isRight, leftText, rightText, onLeft, onRight, style }: { isRight: boolean; leftText: string; rightText: string; onLeft: () => void; onRight: () => void; style?: CSS.Properties; }): JSX.Element; export default UncontrolledDualButtons;