import { type Size } from '@remotion/player';
import type { AssetMetadata } from '../../helpers/get-asset-metadata';
import type { Dimensions } from '../../helpers/is-current-selected-still';
declare const EditorGuides: React.FC<{
    canvasSize: Size | null;
    contentDimensions: Dimensions | 'none' | null;
    assetMetadata: AssetMetadata | null;
}>;
export default EditorGuides;
