import { default as React } from 'react'; import { LabelAndDataProps } from '../LabelAndData/LabelAndData'; export type SpreadsheetPaneProps = { /** Text for the header */ headerText: string; /** Sub header label and data props */ subHeader?: LabelAndDataProps; /** Tooltip info for the info tooltip in the sub header */ tooltipInfo?: string; /** Content of the SpreadsheetPane */ children: ({ collapsed }: { collapsed: boolean; }) => React.JSX.Element; /** Determines if the pane is expanded or collapsed */ collapsed: boolean; /** Toggle the collapsed state in the parent */ setCollapsed: (collapsed: boolean) => void; /** Optional prop to add a test id to the SpreadsheetPane for QA testing */ qaTestId?: string; }; declare const SpreadsheetPane: { ({ headerText, subHeader, tooltipInfo, children, collapsed, setCollapsed, qaTestId, }: SpreadsheetPaneProps): React.JSX.Element; ContentBlock: ({ children, }: { children: React.ReactNode; }) => React.JSX.Element; LargeAlert: ({ children, color, }: { children: React.ReactNode; color: "pink" | "blue" | "green" | "red"; }) => import("react/jsx-runtime").JSX.Element; }; export { SpreadsheetPane };