export declare class StyleUtil {
    /**
     * Styles the cursor of the input wrapper element.
     */
    static setInputWrapperCursorState(props: {
        disabled: boolean;
        readonly: boolean;
    }, options?: {
        inputWrapperElement?: HTMLElement;
        searchable?: boolean;
    }): void;
    /**
     * Styles the padding of the input wrapper element.
     */
    static handleInputWrapperStyle(props: {
        inputWrapperElement?: HTMLElement;
        multiple?: boolean;
        arrowPlacement?: string;
    }): void;
}
