diff --git a/.changeset/odd-ants-push.md b/.changeset/odd-ants-push.md
new file mode 100644
index 000000000000..73e8a7f3378f
--- /dev/null
+++ b/.changeset/odd-ants-push.md
@@ -0,0 +1,5 @@
+---
+'@ag.ds-next/react': patch
+---
+
+callout: Remove callout in control group story as we no longer support this pattern.
diff --git a/packages/react/src/callout/Callout.stories.tsx b/packages/react/src/callout/Callout.stories.tsx
index 9abd8bd0da47..9bf022944a13 100644
--- a/packages/react/src/callout/Callout.stories.tsx
+++ b/packages/react/src/callout/Callout.stories.tsx
@@ -1,11 +1,8 @@
import { StoryObj, Meta } from '@storybook/react';
-import { ConditionalFieldContainer } from '../../../../docs/components/ConditionalFieldContainer';
import { VisuallyHidden } from '../a11y';
import { Box } from '../box';
-import { ControlGroup } from '../control-group';
import { Flex } from '../flex';
import { CalendarIcon } from '../icon';
-import { Radio } from '../radio';
import { Text } from '../text';
import { Callout } from './Callout';
import { CalloutTitle } from './CalloutTitle';
@@ -158,25 +155,6 @@ export const CalendarExample: Story = {
),
};
-export const InControlGroup: Story = {
- render: (args) => (
-
- Radio option one
- Radio option two
-
-
-
- Text message
-
- ),
- args: {
- title: 'Callout heading',
- children: Description of the callout.,
- tone: 'info',
- variant: 'compact',
- },
-};
-
export const NoTitle: Story = {
args: {
title: undefined,