import * as React from 'react';
import { SimpleButtonProps } from '../../../components/SimpleButton';
export interface PauseButtonProps extends SimpleButtonProps {
    fillColor?: 'neutral' | 'red';
}
export declare const ButtonPause: (props: PauseButtonProps) => React.JSX.Element;
