export type Visibility = { visible: number[]; }; type GeomGroupProps = Visibility & { onChange: (v: Visibility) => void; }; export declare const GeomGroups: ({ visible, onChange, }: GeomGroupProps) => any; export {};