type Ids = string | string[] | HTMLButtonElement | HTMLButtonElement[];
export declare const getLawChecked: (lawElement?: HTMLElement | null) => string[];
export declare const toggleLawChecked: (ids: Ids, lawElement?: HTMLElement | null) => void;
export declare const setLawChecked: (ids: Ids, lawElement?: HTMLElement | null) => void;
export declare const parseLawIds: (ids: string | string[], lawHtml: string) => {
path: {
id: string;
className: string;
guideUrl: string;
html: string;
url: string;
label: string;
}[];
label: string;
url: string;
guideUrl: string | undefined;
id: string;
className: string;
html: string;
}[];
export declare const parseLawMeta: (lawHtml: string) => {
[x: string & {}]: {
label: string;
value: string;
};
title: {
label: string;
value: string;
};
url: {
label: string;
value: string;
};
legacyid: {
label: string;
value: string;
};
titleshort: {
label: string;
value: string;
};
};
export declare const fixLawHtml: (lawHtml: string) => string;
export {};