kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
20 lines (19 loc) • 476 B
TypeScript
import React from 'react';
export declare type TimezoneSelectorProps = {
selected?: string;
options?: {
name: string;
}[];
onSelect: (string: any) => void;
theme?: any;
};
declare function TimezoneSelectorFactory(): React.ForwardRefExoticComponent<{
options?: {
name: string;
}[] | undefined;
onSelect: (string: any) => void;
selected?: string | undefined;
} & {
theme?: any;
}>;
export default TimezoneSelectorFactory;