import type { ObjectKey } from './types'; export declare const objectKeyToString: (objectKey: ObjectKey) => string; export declare const toggleTaskState: (state: string) => "TODO" | "DONE"; export declare const findIndex: (array: any[], predicate: (item: any) => boolean) => number;