import React__default from 'react'; import { CommonPhotoAlbumProps } from '../types.js'; /** SSR component props. */ type SSRProps = { /** Photo album layout breakpoints. */ breakpoints: readonly number[]; /** Photo album instance, which must be the only child. */ children: React__default.ReactElement>; /** If `true`, do not include the inline stylesheet. */ unstyled?: boolean; /** Custom class names for the container and the breakpoint intervals. */ classNames?: { /** Custom container class name. */ container?: string; /** Custom class names for the breakpoint intervals. */ breakpoints?: Record; }; }; declare const _default: React__default.ForwardRefExoticComponent>; export { _default as default }; export type { SSRProps };