import { TdSelectInputProps } from '../type'; import { PopupVisibleChangeContext } from '../../popup'; export type overlayInnerStyleProps = Pick & { disabled?: boolean | Array; }; export declare function useOverlayInnerStyle(props: overlayInnerStyleProps): { tOverlayInnerStyle: import("vue").ComputedRef import("../..").Styles)>; innerPopupVisible: import("vue").Ref; onInnerPopupVisibleChange: (visible: boolean, ctx: PopupVisibleChangeContext) => void; };