import { Component } from 'react'; type FaciesData = any; export declare function FaciesCard({ facies }: { facies: any; }): import('react').DOMElement, Element>; interface FaciesDescriptionSmallProps { selected: string; onClick: (d: any) => void; isEditable: boolean; } export declare class FaciesDescriptionSmall extends Component { constructor(props: FaciesDescriptionSmallProps); static contextType: import('react').Context; static defaultProps: { selected: null; isEditable: boolean; }; context: any; renderEach(d: FaciesData): import('react').ReactElement<{ key: any; onClick: null; style: any; className: string; }, string | import('react').JSXElementConstructor>; render(): import('react').DOMElement, Element>; } export {};