import type { FormFieldProps } from "../FormFieldTypes"; interface UseToolBarProps { focused: boolean; toolbar: React.ReactNode; toolbarVisibility: FormFieldProps["toolbarVisibility"]; } interface UseToolbar { isToolbarVisible: boolean; toolbarAnimationEnd: { opacity: number; height: number; }; toolbarAnimationStart: { opacity: number; height: string | number; }; } export declare function useToolbar(props: UseToolBarProps): UseToolbar; export {};