import { State } from './state'; export interface StateSortingIndex { name: string; fields: Record; unique?: boolean; } export interface StatePrimaryKey extends StateSortingIndex { unique: true; auto?: 'increment'; } export declare const StateIndexNameRegex: RegExp; export declare const isStateSortingIndexEquals: (sa: State, ia: StateSortingIndex, sb: State, ib: StateSortingIndex) => boolean; //# sourceMappingURL=state-index.d.ts.map