import { BackgroundState } from '../types';

export declare const useBackgroundState: (initialState: BackgroundState) => {
    backgroundState: BackgroundState;
    setBackgroundState: import('react').Dispatch<import('react').SetStateAction<BackgroundState>>;
    rotateBackground: () => void;
    updateBackgroundSize: (size: {
        width: number;
        height: number;
    }) => void;
};
//# sourceMappingURL=use-background-state.d.ts.map