///
import { OffsetType } from "./guest-select";
export declare const useSelectPopper: ({ offset, }: {
offset?: OffsetType | undefined;
}) => {
element: HTMLInputElement | null;
setElement: import("react").Dispatch>;
popper: HTMLUListElement | null;
setPopper: import("react").Dispatch>;
styles: {
[key: string]: import("react").CSSProperties;
};
attributes: {
[key: string]: {
[key: string]: string;
} | undefined;
};
};