import * as React from 'react'; export interface Props { testId?: string; children?: React.ReactNode; onClickCancel?: () => void; onClickOk?: () => void; cancelString?: string; okString: string; colorType: 'default' | 'accent' | 'warn' | 'subtle'; } export default class AlertBox extends React.PureComponent { static defaultProps: { colorType: string; }; render(): JSX.Element; }