type DurationKey = "none" | "fast" | "normal" | "slow"; type FadeAnimationOptions = { fadeInDuration?: DurationKey; fadeOutDuration?: DurationKey; }; export declare const useFadeAnimation: ({ fadeInDuration, fadeOutDuration, }?: FadeAnimationOptions) => { handlePressIn: () => void; handlePressOut: () => void; animatedStyle: { backgroundColor: string; }; }; export {};