/**
 * Interface `BreakpointsConfig` to configure responsive breakpoints as numbers to express pixels
 */
export interface BreakpointsConfig {
    xSmall: number;
    small: number;
    medium: number;
    large: number;
    xLarge: number;
}
/**
 * Interface `CarouselPreviewConfig` to configure carousel's previews
 */
export interface CarouselPreviewConfig {
    visible: boolean;
    number?: number;
    arrows?: boolean;
    clickable?: boolean;
    width?: string;
    maxHeight?: string;
    breakpoints?: BreakpointsConfig;
}
