import * as React from "react";

type TextProps = {
  text?: string;
} & React.HTMLAttributes<any>;

type ElementProps = {
  ref?: any;
} & React.HTMLAttributes<any>;

export type BasePaneProps = {
  header?: any;
  content?: any;
  titleProps?: ElementProps;
  textProps?: TextProps;
  textProps1?: TextProps;
  contentProps?: ElementProps;
  innerProps?: TextProps;
} & ElementProps;

export type _b6c162d113Props = BasePaneProps;

export const Pane: (props: BasePaneProps) => any;
