/** * Generates a (sequential) unique ID. If prefix is given, the ID is appended to it. * * @param prefix The value to prefix the ID with * @returns Unique ID */ export declare const uniqueId: (prefix?: string) => string; export declare const prefersReducedMotion: boolean;