import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
import type { TestableProps } from '../../utils/testId';
export interface UtilityPageProps extends HTMLAttributes, TestableProps {
ref?: Ref;
title: string;
subtitle: string;
description: string;
children?: ReactNode;
}
export declare const UtilityPage: FC;