import type { ReactNode } from 'react'; import type { ButtonProps } from '../../../Button'; export type UseLogicParams = Omit & { tooltipTitle?: ReactNode; /** * Флаг, управляющий необходимостью рендера тултипа * @default по умолчанию делается проверка !disabled */ isTooltipActive?: boolean; disableInteractive?: boolean; }; type UseLogicReturnParams = Omit & { isTooltipActive: boolean; variant: ButtonProps['variant']; withoutContainer?: boolean; }; export declare const useLogic: (props: UseLogicParams) => UseLogicReturnParams; export {};