import stylelint, { Config } from "stylelint";

//#region src/index.d.ts
interface StylelintConfig {
    scss?: boolean;
    order?: boolean;
}
declare function defineConfig(config?: StylelintConfig): Config & {
    extends: string[];
    plugins: (string | stylelint.Plugin)[];
    rules: {
        [ruleName: string]: stylelint.ConfigRuleSettings<unknown, object>;
    };
};
declare const stylelintConfig: Config;

//#endregion
export { StylelintConfig, stylelintConfig as default, defineConfig };