import { FC } from '..'; import { Button as ButtonSpec } from '@slack/types'; import { ContainerProps } from './ContainerProps'; export interface ButtonElementProps extends ContainerProps { actionId: string; url?: string; value?: string; style?: 'primary' | 'danger'; } export declare const ButtonElement: FC;