import * as React from "react"; type TextProps = { text?: string; } & React.HTMLAttributes; type ElementProps = { ref?: any; } & React.HTMLAttributes; 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;