import type { SelectOptionsType } from "@cn-ui/reactive";
export interface AddressPickerProps {
    options: {
        label: string;
        value: string;
    }[][];
}
export declare const AddressPicker: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<AddressPickerProps, HTMLDivElement, SelectOptionsType[]>>;
