///
import { KEY_ID } from '@acoustic-content-sdk/api';
import { RenderingContextInput } from '@acoustic-content-sdk/component-api';
import { KEY_LAYOUT_MODE } from '@acoustic-content-sdk/utils';
export interface ContentComponentProps {
/**
* Rendering context used to render the component reference
*/
ctx?: RenderingContextInput;
/**
* Points to a piece of external content
*/
[KEY_ID]?: string;
/**
* Optional layout mode
*/
[KEY_LAYOUT_MODE]?: string;
}
/**
* Injection token for the content component
*/
export declare const ACOUSTIC_CONTEXT_CONTENT_COMPONENT: Required>>;