declare const config: {
    plugins: import("stylelint").Plugin[];
    rules: {
        'declaration-empty-line-before': (string | {
            except: string[];
            ignore: string[];
            severity: "error" | "warning";
        })[];
        'at-rule-empty-line-before': (string | {
            ignore: string[];
            severity: "error" | "warning";
        })[];
        'order/order': ((string | {
            type: string;
            name: string;
            selector?: never;
            hasBlock?: never;
        } | {
            type: string;
            selector: RegExp;
            hasBlock: boolean;
            name?: never;
        } | {
            type: string;
            name: string;
            hasBlock: boolean;
            selector?: never;
        })[] | {
            severity: "error" | "warning";
        })[];
        'order/properties-order': ({
            noEmptyLineBetween: boolean;
            emptyLineBefore: string;
            properties: string[];
        }[] | {
            severity: "error" | "warning";
            unspecified: string;
            emptyLineBeforeUnspecified: string;
            emptyLineMinimumPropertyThreshold: number;
        })[];
    };
};
export default config;
export { propertyGroups } from './config.ts';
