import * as React from "react"; interface BackgroundPositionSelectorProps { disabled?: boolean; value?: string; onChange: (value: string) => void; } declare const BackgroundPositionSelector: (props: BackgroundPositionSelectorProps) => React.JSX.Element; export default BackgroundPositionSelector;