import React from 'react'; /** * @public */ export type StackstormHomeProps = { title?: string; subtitle?: string; headerButtons?: React.ReactNode[]; }; export declare const StackstormHome: (props: StackstormHomeProps) => React.JSX.Element;