export interface ICropMarkProps { edge: 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight'; length: number; offset: number; color: string; size: number; } export declare const CropMark: ({edge, length, offset, color, size}: ICropMarkProps) => any; export default CropMark;