import React from "react"; import { GenericSBProps, Alignment, Asset, FalconColorsTypes, NativeColorPicker, ComponentWithContentProps } from "../../components/types"; export interface FalconDescriptionInterface extends GenericSBProps { text: Array; textColor: FalconColorsTypes; textColorPicker: NativeColorPicker; icon: Asset; textElementPosition: Alignment; } declare const FalconDescription: React.FC>; export default FalconDescription;