import * as React from 'react'; import { BoxProps } from '../../box/Box'; export interface InlineSelectChoiceProps extends BoxProps { readonly value: string; readonly children: React.ReactNode; } export declare const InlineSelectChoice: React.FC; export default InlineSelectChoice;