import * as React from "react"; type TextProps = { text?: string; } & React.HTMLAttributes; type ElementProps = { ref?: any; } & React.HTMLAttributes; export type BaseStylePaneProps = { inheritItems?: any; elementProps?: ElementProps; elementProps1?: ElementProps; textProps?: TextProps; } & ElementProps; export type _a06d2e814827Props = BaseStylePaneProps; export const StylePane: (props: BaseStylePaneProps) => React.ReactElement; export type BaseInheritItemProps = { elementProps?: ElementProps; } & ElementProps; export type _a06d2e813366Props = BaseInheritItemProps; export const InheritItem: (props: BaseInheritItemProps) => React.ReactElement;