declare namespace OtherComponentScssNamespace {
  export interface IOtherComponentScss {
    'col-border-right': string;
    'spg-text-center': string;
  }
}

declare const OtherComponentScssModule: OtherComponentScssNamespace.IOtherComponentScss & {
  /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
  locals: OtherComponentScssNamespace.IOtherComponentScss;
};

export = OtherComponentScssModule;
