@foris/avocado-suite 0.16.1 → 0.17.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,8 @@
1
+ interface UseCloseSelectProps {
2
+ id?: string;
3
+ }
4
+ export declare const useCloseSelect: ({ id }: UseCloseSelectProps) => {
5
+ uniqueId: string;
6
+ handleCloseSelect: () => void;
7
+ };
8
+ export {};