/// <reference types="svelte" />

export interface RowProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> {
  /**
   * User defined classes
   * @default ""
   */
  className?: string;

  /**
   * Disables all styling, allowing you to further customize this component
   * @default false
   */
  styled?: boolean;

  /**
   * If this column is part of a flexbox grid
   * @default false
   */
  flex?: boolean;

  /**
   * If this column is displayed as inline and not inline-block
   * @default false
   */
  inline?: boolean;
}

export default class Row {
  $$prop_def: RowProps;
  $$slot_def: {
    default: {};
  };

  $on(eventname: string, cb: (event: Event) => void): () => void;
}
