import React from "react"; import { GeoLocation } from "@gooddollar/web3sdk-v2"; export type SegmentationProps = { onLocationRequest: (locationState: GeoLocation, account: string) => Promise; onDone: (error?: Error | boolean) => Promise; onDataPermission: (accepted: string) => Promise; withNavBar: boolean; certificateSubjects: any; account: string; isWhitelisted?: boolean; expiryFormatted: string | undefined; isDev?: boolean; isWallet?: boolean; }; export declare const SegmentationWizard: (props: SegmentationProps) => React.JSX.Element; //# sourceMappingURL=SegmentationWizard.d.ts.map