import type { EditableNodeAttributes } from "../types"; interface AddressBlockProps extends EditableNodeAttributes { address?: string; city?: string; state?: string; postalCode?: string; phone?: string; googleMapsUrl?: string; layout?: "inline" | "stacked"; colorScheme?: "light" | "dark"; className?: string; } export declare function AddressBlock({ address, city, state, postalCode, phone, googleMapsUrl, layout, colorScheme, className, "data-node-id": dataNodeId, }: AddressBlockProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=AddressBlock.d.ts.map