import { CustomOption } from '../custom'; import { CheckStatusOption } from './checkstatus'; import { DeleteOption } from './delete'; import { DetailsOption } from './details'; import { EditOption } from './edit'; import { SelectStatusOption } from './selectstatus'; export * from './checkstatus'; export * from './delete'; export * from './details'; export * from './edit'; export * from './selectstatus'; /** * all options body */ export declare type OptionsTableBody = CheckStatusOption | CustomOption | DeleteOption | DetailsOption | EditOption | SelectStatusOption;