import { ComponentChildren } from 'preact'; import { InlineSpace } from '../../layout/inline/inline.js'; import { StackSpace } from '../../layout/stack/stack.js'; import { EventHandler } from '../../types/event-handler.js'; import { FocusableComponentProps } from '../../types/focusable-component-props.js'; export interface RadioButtonsProps extends FocusableComponentProps { disabled?: boolean; direction?: 'vertical' | 'horizontal'; onChange?: EventHandler.onChange; onValueChange?: EventHandler.onValueChange; options: Array; space?: StackSpace | InlineSpace; value: null | string; } export type RadioButtonsOption = { disabled?: boolean; children?: ComponentChildren; value: string; }; export declare const RadioButtons: import("preact").FunctionalComponent, "ref"> & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=radio-buttons.d.ts.map