export declare const Dialog: { alert: (title: string, message: string, options?: { actionLabel?: string; actionColor?: keyof import("../theme/theme.types").Colors; onDismiss?: () => void; }) => void; prompt: (title: string, message: string, onSubmit: (value: string) => void, options?: { actionLabel?: string; cancelLabel?: string; cancelable?: boolean; onDismiss?: () => void; }) => void; select: (title: string, data: string[] | { values: T[]; renderItem: (item: T, key: React.Key) => import("react").ReactNode; }, onSelect: (item: T | string) => void, options?: { onDismiss?: () => void; cancelable?: boolean; }) => void; }; //# sourceMappingURL=index.d.ts.map