declare const RESPONSIVE: {
sm: string;
md: string;
lg: string;
xl: string;
};
declare type Responsive = keyof typeof RESPONSIVE;
export declare function getGrid(opt?: number | {
width?: number;
offset?: number | string;
responsive?: Responsive;
}): string;
export {};