interface Params { onPress?: () => void; /** * @deprecated This is meant for internal DS usage only. Do not use it in your code. * @ignore */ dsInternalSimulation?: 'pressed'; } export declare function usePress(params: Params): { onPress: undefined; onPressIn: undefined; onPressOut: undefined; showPressed: boolean; } | { onPress: () => void | undefined; onPressIn: () => void; onPressOut: () => void; showPressed: boolean; }; export {}; //# sourceMappingURL=usePress.d.ts.map