import OnesyStyle from './OnesyStyle'; import { IRuleItem } from './OnesyStyleSheet'; export interface ISort { value?: any; arguments?: any; } export declare type TOptionsPriority = 'original' | 'shorthand' | 'individual'; export interface IOptions { priority?: TOptionsPriority; } declare function sort(onesyStyle: OnesyStyle, options_?: IOptions): { methods: { method: (values: Array) => ISort; }; remove: () => void; }; export default sort;