import { FunctionComponent } from 'react'; export interface LoadableHelpSheetProps { type: 'values' | 'money'; } /** * @returns Wrapper for the help sheet components which loads the help sheet. */ declare const LoadableHelpSheet: FunctionComponent; export default LoadableHelpSheet;