import React from 'react';
import { ScreenConfig, Styles, Handlers } from '../types';
export interface InputButtonProps {
    config: ScreenConfig;
    labelConfig: ScreenConfig;
    handlers: Handlers;
    label?: string;
    value: string;
    isRequired?: boolean;
    style?: Styles;
    labelStyle?: Styles;
    showOptionalLabel?: boolean;
}
declare const InputButton: ({ config, handlers, label, value, isRequired, style, labelStyle, labelConfig, showOptionalLabel }: InputButtonProps) => React.JSX.Element;
export default InputButton;
