import { YUIComponent } from './component';

/** Col Component */
export declare class YCol extends YUIComponent {
  /** Number of column the grid spans */
  span: number;

  /** Number of spacing on the left side of the grid */
  offset: number;

  /** Number of columns that grid moves to the right */
  push: number;

  /** Number of columns that grid moves to the left */
  pull: number;
}
