import { FC } from 'react'; import { DialogProps } from '../index'; export type RulesDialogProps = { close?: () => void; } & DialogProps; export declare const RulesDialog: FC;