import { FC, ReactNode } from 'react'; export interface BottomControlButtonsProps { className?: string; children: ReactNode; 'data-testid'?: string; } /** * Wrapper that includes bottom controls buttons * @category React Component * @category UI Controls */ export declare const BottomControlButtons: FC;