interface FormHeaderProps { heading?: string; description?: string; } declare function FormHeader({ heading, description }: FormHeaderProps): import("react/jsx-runtime").JSX.Element | null; export default FormHeader;