import { PlainTextOption } from '@slack/web-api';
import { Prop } from '../constants';
import { OnSelectParams } from '..';
export interface FoxOption extends PlainTextOption {
    [Prop.OnSelect]?: OnSelectParams;
}
