import type * as React from "react"; export declare function DialogActions({ isSubmitting, isEditing, onCancel, }: { isSubmitting: boolean; isEditing: boolean; onCancel: () => void; }): React.JSX.Element; export declare function SelectField({ label, value, options, onValueChange, }: { label: string; value: string; options: Array<{ value: string; label: string; }>; onValueChange: (value: string) => void; }): React.JSX.Element; export declare function SwitchField({ label, checked, onCheckedChange, }: { label: string; checked: boolean; onCheckedChange: (checked: boolean) => void; }): React.JSX.Element; export declare function Field({ label, error, children, }: { label: string; error?: string; children: React.ReactNode; }): React.JSX.Element; export declare function nullableString(value: string | null | undefined): string | null;