/** * Make a composable function usable with multiple consumers. * The composable is only invoked once, and the result is shared. * * @param composable - The composable function to share * @returns A shared version of the composable */ export declare function createSharedComposable any>(composable: Fn): Fn;