import type { SharedValue } from "react-native-reanimated"; export declare const isSharedValue: (value: unknown) => value is SharedValue; export declare const isSharedValueSelector: (value: unknown) => value is { __sv: SharedValue; __key: string; }; export declare const materialize: (props: T) => T; type Composer = (outer: T, inner: T) => T; export declare const composeDeclarations: (filters: T[], composer: Composer) => T; export {};