import { FC, ReactElement } from 'react'; export interface SliceProps { title: string; type?: string; description?: string; background: string; id?: string; children?: ReactElement; backgroundOdd?: boolean; fullWidthCampaign?: boolean; } declare const Slice: FC; export default Slice;