export interface CollationOptions {

    locale?: string,
    caseLevel?: boolean,
    caseFirst?: string,
    strength?: number,
    numericOrdering?: boolean,
    alternate?: string,
    maxVariable?: string,
    backwards?: boolean
}

