declare const capitalizeFirstLetter: (str?: string) => string; declare const getLabelText: (element: HTMLElement) => string; declare const guid: () => string; /** * Returns the value of the key from the object passed in. If the key does not exist on the object, an attempt to * retrieve the value from the fallback key is made, which is 'default' unless otherwise specified. */ declare const mapGet: (key: string, obj: Record, fallback?: string) => unknown; export { capitalizeFirstLetter, getLabelText, guid, mapGet };