/**
 * The possible valid and supported layouts.
 *
 * See the [Result Layouts](https://docs.coveo.com/en/360/) documentation.
 */
export type ValidLayout = 'list' | 'card' | 'table';

export type RendererValidLayout = ValidLayout | 'preview';
