import { CSSResult } from 'lit';
import { NamiElement } from '../NamiElement';
import { TResponsiveGrid } from '../../types/components/containers';
export declare class NamiResponsiveGrid extends NamiElement {
    component: TResponsiveGrid;
    inFocusedState: boolean;
    scaleFactor: number;
    private mouseDown;
    private startX;
    scrollLeft: any;
    connectedCallback(): void;
    disconnectedCallback(): void;
    startDragging: (e: any) => void;
    stopDragging: () => void;
    move: (e: any) => void;
    protected styles(): CSSResult;
    render(): any[][];
}
