import { Component } from 'react'; import { ColumnDivision } from '../../context'; interface FaciesPickerProps { interval: ColumnDivision; onChange: (f: number) => void; } export declare class FaciesPicker extends Component { static contextType: import('react').Context; context: any; render(): import('react').FunctionComponentElement; } export declare const BasicFaciesSwatch: ({ facies: d, ...rest }: { [x: string]: any; facies: any; }) => import('react').ReactElement<{ style: { backgroundColor: any; width: string; height: string; }; }, string | import('react').JSXElementConstructor>; interface FaciesSwatchProps { isEditable: boolean; facies: { id: number; color: string; } | null; } export declare function FaciesSwatch(props: FaciesSwatchProps): import('react').FunctionComponentElement<{ [x: string]: any; facies: any; }>; export {};