import { FC, IglooComponentProps } from '../types'; import './style'; export interface Props extends IglooComponentProps { title?: string; description?: string; declaration?: string; } declare const Declaration: FC; export default Declaration;