/**
 * @file index.tsx
 *
 * @fileoverview Shows form elements inline.
 */
import React from 'react';
export interface FormItemsInlineProps {
    /**
     * Elements to include inside.
     */
    inputs: React.ReactNode[];
    /**
     * The submit button.
     */
    button: React.ReactNode;
}
export declare const FormItemsInline: ({ inputs, button }: FormItemsInlineProps) => JSX.Element;
