import { FC, ReactNode } from 'react'; export interface ControlProps { children: ReactNode; className?: string; 'data-testid'?: string; } /** * Wrapper that holds all the UI Components for Controls * @category React Component * @category UI Controls */ export declare const Controls: FC;