import { FC } from '..'; import { ContainerProps } from './ContainerProps'; import { Block } from './Block'; import { KnownBlock, View } from '@slack/types'; export interface ModalProps extends ContainerProps>> { title: string; callbackId?: string; submitButtonText?: string; closeButtonText?: string; privateMetadata?: string; clearOnClose?: boolean; notifyOnClose?: boolean; } export declare type ModalSpec = View; export declare const Modal: FC;