import { type InputComponent, type InputProps, type InputHTMLAttributes, type CSSProperties } from "@agyemanjp/fxui"; import { type OmitX } from "@agyemanjp/standard"; export declare const InputAddress: InputComponent; type InputAddressProps = InputProps & OmitX, "type"> & { suggestions?: string[]; useCurrentLocation?: boolean; }; export declare const ToggleSwitch: InputComponent; type ToggleSwitchProps = { value: boolean; onValueChanged?: (newValue: boolean) => void; style?: CSSProperties; onLabel?: string; offLabel?: string; }; export {};