declare namespace LayoutScssNamespace {
  export interface ILayoutScss {
    'spg-layout__body': string;
    'spg-layout__footer': string;
    'spg-layout__page-header': string;
  }
}

declare const LayoutScssModule: LayoutScssNamespace.ILayoutScss & {
  /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
  locals: LayoutScssNamespace.ILayoutScss;
};

export = LayoutScssModule;
